Sunday 20 October 2013

Hello World in C


#include<stdio.h>
#include<conio.h>
void main()
{
   printf("Welcome to the C tutorials");
   getch();
}


OUTPUT:- Welcome to the C tutorials

No comments :

Post a Comment