(Choose 1 answer)
Identify an error on compiling the code below:
float i=1.5;
switch(i){
case 1: printf("Hello");
case 0: printf("World");
}
A. constant expression is required
B. case statements are invalid
C. cases are not in a sequence
D. switch quantity not an integer
Exit 43