C - onditional Statements
Identify the error in this code:
int num = 5;
switch (num) {
case 1
printf("One\n");
break;
default:
printf("Default\n");
}