What will be the output of the following program?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program?

#include  
int main() {
int i=3;
switch(i) {
case 1:
printf("Hello ");
case 2:
printf("Hi ");
case 3:
continue;
default:
printf("Bye ");
}
return 0;
}

A. Compiler error: continue statement not within a loop.
B. No Output
C. Hello
D. Bye