Monday, May 6, 2013

Your First Program In C

/*Your First Program In C*/
/* Suchetan Dey */

#include<stdio.h>
#include<conio.h>
    void main()
    {
        printf("Hello World !");
        getch();
    }
The Output is :-


No comments:

Post a Comment