C Program to Print Welcome

Program should simply display "Welcome".

Sample Output:

Welcome

Try your Solution

Strongly recommended to Solve it on your own, Don't directly go to the solution given below.

#include<stdio.h> int main() { //write your code here }

Program or Solution

				
			
					
//Program to print Welcome Message
#include<stdio.h>
int main()
{
	printf("Welcome");
	return  0;
}
			
				
			

Program Explanation

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".

Comments