C - onditional Statements
Find the error in this else-if ladder:
int y = 12;
if (y < 10) {
printf("Less than 10\n");
} else if (y < 20)
printf("Less than 20\n");
else
printf("20 or more\n");
}