Sample Input 0
C
Language
Welcome To C!!
Sample Output 0
G
Language
Welcome To C!!
Answers
Answered by
0
Answer:
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, whatever !");
return 0;
}
Explanation:
Similar questions