What is the output of the given code?
int main()
{
int i = 128<<2<<1<<0;
switch(i)
{
default : printf(Bye); case 128<<4<<3<<2>>6 :
printf(\\\\nHello); case 128<<4<<2<<2>>6 :
printf(\\\\nKeep Calm); case 128<<4<<4<<2>>3 :
printf(\\\\nGet Lost);
}
}
Reveal answer
Fill a bubble to check yourself