C Program to Print Welcome

Program should simply display "Welcome".

Sample Output:

Welcome

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