C - Basics and Execution Environment
Find the error in this C code:
#include <stdio.h>
int main() {
printf("Welcome to C programming")
return 0;
}#include <stdio.h>
int main() {
printf("Welcome to C programming")
return 0;
}printf statement must end with a semicolon.printf(...) is missing causing a syntax error.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions