Thursday, 12 April 2012

Hello World ! Our first program in C

Here is our first program helloworld.c

#include <stdio.h>
main()
{
     printf("Hello World\n") ; //this one will print the given data and text

     system("PAUSE") ; // to see the result  devc++ editor need this command
}


here is the output of this program

No comments:

Post a Comment