C - onditional Statements
Find the error in this nested conditional code:
int n = 5;
if (n > 0)
if (n < 10)
printf("In range\n");
else
printf("Out of range\n");Find the error in this nested conditional code:
int n = 5;
if (n > 0)
if (n < 10)
printf("In range\n");
else
printf("Out of range\n");15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions