C Basic Program to print a Welcome Message
// C Program to print a Welcome Message
#
{
printf("WELCOME TO POOJA BLOG"); //print message
return 0;
}
OUTPUT:
// 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;
}
Glad to getting chance to learn "c"
ReplyDelete