C - onditional Statements
Identify the error in this else-if ladder code snippet:
int x = 5;
if (x > 10)
printf("Greater than 10\n");
else if x > 5 {
printf("Greater than 5\n");
} else {
printf("5 or less\n");
}