C - onditional Statements
What will be printed by this C code?
int val = 3;
if (val >= 5) {
printf("High\n");
} else {
printf("Low\n");
}int val = 3;
if (val >= 5) {
printf("High\n");
} else {
printf("Low\n");
}else block executes.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions