Computer Science, asked by zarlishkhan6094, 9 months ago

C program to print a greeting of your choice on the screen

Answers

Answered by lipumaity
0

Answer:

Is it C or java on the screen

Answered by AskewTronics
1

Below are the code for the above question:

Explanation:

#include <stdio.h> //header file.

int main() //main function.

{

  int string[100]; //variable declaration.

  printf("Enter the greatings of your choice"); //user message.

  gets(string); //take the input from the user

  printf("%s",string); //print the user message.

  return 0; //return statement.

}

Output:

  • If the user inputs as "hellow world" then the output is "Hellow world".

Code Explanation:

  • The user can give the choice which he needs in greatings message.
  • Then the gets function take the string form the user and it is displayed by the printf function.

Learn More:

  • C program :  https://brainly.in/question/12809215
Similar questions