Saturday 28 April 2012

C program to print a message on the screen


#include<stdio.h>
#include<conio.h>

void main()
{
clrscr(); //to clear the screen
printf("\n\n\n\n\t\t\t***** Welcome to C Programming *****");
getch(); //to stop the screen
}


Related Posts Plugin for WordPress, Blogger...