What will be the output of the following code snippet?
main()
{
clrscr();
char ch[]=Hello;
switch(ch)
{
case world: printf(World);
break;
case Hello: printf(Hello);
break;
default: printf(default.);
}
getch();
}
Reveal answer
Fill a bubble to check yourself