Print Hello World Using C Language
How to Print Hello World Using C Language. In this article, you will know about the printf function and how to print some text on the output.First of all type the header file that is #include<stdio.h>. Then type the void main() which shows that the program starts here. The add the opening curly brase the type the printf statement with Hello World text. Now close the braces.Source Code :#include<stdio.h>
void main()
{
printf("Hello world");
}Output :
Hello WorldThat’s all for today lets see you all soon. Try these and wait for more. Have a nice day.
Related Posts
Constants In C Language
Nov 18, 2017
Rules For Defining Variables And Some Keywords In C
Nov 10, 2017
Variables In C Language
Nov 07, 2017
Comments (0)
Leave a Comment
No comments yet. Be the first to comment!