Sunday 15 September 2013

First Program in C , Hello World

#include<stdio.h>
#include<stdlib.h>

void main()
{
 printf("Hello World!\n");
 system("pause");
}

0 comments:

Post a Comment