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' : printf ("Choice B") ; case 'D' : case 'E' : default : printf ( " No Choice" ) ;
Topic-wise GATE CS PYQs with verified steps
