What is the output of the given C code?
int main()
{
bool 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;
}
Reveal answer
Fill a bubble to check yourself