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