Program
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr(); //to clear the screen
printf(“nnnnttt***** Welcome to C Programming *****”);
getch(); //to stop the screen
}
Output
***** Welcome to C Programming *****
Program
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr(); //to clear the screen
printf(“nnnnttt***** Welcome to C Programming *****”);
getch(); //to stop the screen
}
Output
***** Welcome to C Programming *****