C - onditional Statements
What will be the output of this code?
int n = 3;
switch (n) {
case 1:
printf("One\n");
case 2:
printf("Two\n");
case 3:
printf("Three\n");
default:
printf("Default\n");
}