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