What is the output of the given C program?
int main()
{
int i = 1048576>>8>>3>>8>>3;
switch(i++ - 1) // Line 1
{
case -1 : printf("Case -1");
case 1 : printf("Case 1");
default : break;
case 0 : printf("Case 0");
}
return 0;
}
Reveal answer
Fill a bubble to check yourself