C language

Program should simply display "Welcome".
Sample Output:
Welcome
//Program to print Welcome Message
#include<stdio.h>
int main()
{
 printf("Welcome");
 return  0;
}
printf is a function available(pre defined) in C library which is used to print the specified
content in Monitor. 

Here it prints the String literal "Welcome".
Welcome to C language

Comments