Social Icons

Saturday, 8 February 2014

print a message on screen

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

void main()
{
clrscr();                               //to clear the screen

 printf("\n\n\n\t\t***** Welcome to C Programming *****");

 getch(); //to stop the screen
}




                                       Output





No comments:

Post a Comment