What is the output of C Program with switch statement
#includestdio.h
int main()
{
switch(24.5)
{
case 24.5: printf("SILVER ");break;
case 25.0: printf("GOLD "); break;
default: printf("TIN ");
}
printf("COPPER");
}

Posted on by