Computer Science, asked by aishpatil, 4 months ago

Sample Input 0
C
Language
Welcome To C!!
Sample Output 0
G
Language
Welcome To C!!​

Answers

Answered by adi743
0

Answer:

#include <stdio.h>

int main() {

  // printf() displays the string inside quotation

  printf("Hello, whatever !");

  return 0;

}

Explanation:

Similar questions