C - onditional Statements
You want to write a program that prints "Child", "Teen", or "Adult" based on age using else-if ladder. Which code correctly implements this?
int age = 16;
if (age < 13) {
printf("Child\n");
} else if (age < 20) {
printf("Teen\n");
} else {
printf("Adult\n");
}