C Programming
What will be the following code's output if choice = 'R'?switch(choice){ case 'R' : printf("RED"); case 'W' : printf("WHITE"); case 'B' : printf("BLUE"); default : printf("ERROR");break;}
13, 10, 24, 50
13, 13, 24, 13
50, 13, 24, 50
50, 13, 11, 13
50, 13, 24, 13
ANSWER
DOWNLOAD EXAMIANS APP
↑