Pages

Thursday, 8 January 2015

C Program To Print Hello World

This post is about to print simple Hello world in C.

For any query regarding c/c++ feel free to contact me on khimanichirag@gmail.com or comment below. I try my best to solve it.

 #include<stdio.h>  
 #include<conio.h>  
 void main()  
 {  
      clrscr();  
      printf("Hello world..");  
      getch();  
 }  

No comments:

Post a Comment