What is the output of the given C program?
int main()
{
int i= (int)round(hypot(114,123));
switch(i) // Line 1
{
default : printf("\\nDefault Case");
case 128<<6<<3 : printf("\\nCase 1");
case 9072/54 : printf("\\nCase 2");
case 128<<4<<2 : printf("\\nCase 3");
}
}
Reveal answer
Fill a bubble to check yourself