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;}

RED WHITE BLUE
ERROR
RED ERROR
RED
RED WHITE BLUE ERROR

ANSWER DOWNLOAD EXAMIANS APP