Multiple choice

What is the output of the given C code?

int main()
{
boolean i=1;
switch(round(hypot(114,123))) // Line 1
{
default : printf("Default Case");
case 128<<6<<3 : printf("Case 1");
case 9072/54 : printf("Case 2");
case 128<<4<<2 : printf("Case 3");
}
return 0;
}

  1. Default Case Case 1 Case 2 Case 3

  2. Case 1 Case 2 Case 3

  3. Case 2 Case 3

  4. Case 3

  5. Compilation error

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

There is an error in the program.