C - onditional Statements
What will be printed by this code?
int x = 3, y = 7;
if (x > 5) {
if (y < 10) {
printf("A\n");
}
} else {
printf("B\n");
}What will be printed by this code?
int x = 3, y = 7;
if (x > 5) {
if (y < 10) {
printf("A\n");
}
} else {
printf("B\n");
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions