What will be the output of the following C program segment?
Char inChar = ‘A’ switch (inChar ) { case ‘A’ : printf (“Choice A n”); case ‘B’ case ‘C’ : print f(”Choice B”); case ‘D’ case ‘E’ default : printf (“No Choice”) ; }
Reveal answer
Fill a bubble to check yourself