โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main(){
int i;
printf("Enter a number");
scanf("%d",&i); // 1
switch(i){
case 1:
printf("Do ");
case 2:
printf("Re ");
case 3:
printf("Me ");
case default:
printf("Fa So La Ti Do ");
}
return 0;
}