Wednesday, March 14, 2012

C Hello World

C Programming Hello World
(actually testing for syntax highlighter :-p)
//C Hello World
#include<stdio.h>

//main function
int main( void ){

   //standard output
   printf("Hello World\n");
   
   //pause
   system("pause");

}
Output:

No comments:

Post a Comment