Q. Find the output of the following program.
Code:main(){
Float a = 5;
switch(a){
Case 5: cout <<”Brijesh”;
Default: cout <<”Goswami”;
}
}
β
Correct Answer: (D)
Error
main(){
Float a = 5;
switch(a){
Case 5: cout <<”Brijesh”;
Default: cout <<”Goswami”;
}
}
You must be Logged in to update hint/solution