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(“nnnnttt***** Welcome to C Programming *****”);
getch(); //to stop the screen
}

6 thoughts on “C program to print a message on the screen”

      1. if printf(“nnnnttt***** Welcome to C Programming *****”);
        then
        how to possible fined other output , please tell me

Leave a Comment

Your email address will not be published. Required fields are marked *