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
Related Programs
- C Program to Print the given Message
- C Program to Print the given word
- C Program to print the given integer number
- C Program to print the given fractional number
- C Program to print the given fractional number in 2 digit decimal format
- C Program to print given integer number in Hexadecimal format
- C Program to print given integer number in octal format
- C Program to print given hexadecimal number in integer format
- C Program to print given octal number in integer format
- C Program to print the ASCII value of a character
- C Program to print the character for given ASCII value
- C Program to print two numbers with a space between them
- C Program to print two numbers with a tab space between them
- C Program to print two numbers in two lines
coming Soon
coming Soon