Kizspy Question: 18
(Choose 1 answer)
POOVER.JM MOM
What is the output when the sample code below is executed?
#include <stdio.h>
int main()
}
int a=1;
{
switch (a)
return 0;
case 2: printf ("Two");
case 1: printf ("One");
case 3: printf ("Three");
case 4: printf ("Four");
A. OneThreeFour
B. OneTwoThreeFour
C. One
D. TwoOneThreeFour