Wednesday, February 11, 2015

C program to print a message on the screen

C program to print a message on the screen

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

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



***** Welcome to C Programming *****");

getch(); //to stop the screen
}