Print statement in C Language

Print statement in C Language

 Hello ,

   It is the tradition when we learn any programming language first teacher or any book recommened to write "Hello World". So in this post I wrote a code for C language print statement .

How you write "Hello World" in C Language?

First you open your IDE(integrated development envidroment)

Like this

Then write:

Write This


Code:

#include<stdio.h>               
int main(){                          
printf("Hello World");
return 0;                      
}                                          


Output:

Result



Result:-Hello World


Note: Semicolin is necessary at the end of any statement. 

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.