What is the output of the given C code?
int main()
{
int i;
switch(i) // Line 1
{
default : printf("No Value\\n");
case 0 : printf("i is 0\\n");
case 1 : printf("i is 1");
}
return 0;
}
Reveal answer
Fill a bubble to check yourself