C - Basics and Execution Environment
What will be the output of this C program?
#include <stdio.h>
int main() {
printf("Hello, C!\n");
return 0;
}#include <stdio.h>
int main() {
printf("Hello, C!\n");
return 0;
}printf function prints the string inside quotes to the screen.\n adds a new line but does not print literally.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions