the output of the following program print("hello").
Answers
Answered by
0
Answer:
It's your answer:-
Explanation:
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
Answered by
0
Answer:
If you find the output of this program, it will show you "Hello"
Explanation:
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
Similar questions