C Basic Program to print a Welcome Message

 // C Program to print a Welcome Message 

 #include<stdio.h> // Header file declaration

int main()            // main method

{

printf("WELCOME TO POOJA BLOG");        //print message

return 0;

}

OUTPUT:


Comments

Post a Comment

Popular posts from this blog

C Program to print Fibonacci Series