SELF Exam Programming

switch(option)
{
case 'H' : printf("Hello");
case 'W' : printf("Welcome");
case 'B' : printf("Bye");
break;
}
what would be the output if option = 'H' ?

Read Solution (Total 2)

SELF Other Question

Q. What is the missing number of the following sequence
9, 35, 91, 189, _, 559
Suppose a,b,c are integer variables with values 5,6,7 respectively. What is the value of the expression:
!((b+c)>(a+10))