Print Welcome Message

Print Welcome Message

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

void main()
{

clrscr();

printf("Welcome to C..!!!! ");

getch();

}

Output :