What would be the output of the following C code?
#includestdio.h 
int main()
{
float f = 4;
switch (f)
{
case 4.0;
printf("yes\n");
break;
default:
printf("default \n");
}
}

Posted on by