Thursday, 5 February 2015

First Simple C Program

#include <stdio.h>

int main()
{
   /* my first program in C */
   printf("Hello, World! \n");
   
   return 0;
}
 
 
 

1 comment: