SELF Exam Programming

Suppose a,b,c are integer variables with values 5,6,7 respectively. What is the value of the expression:
!((b+c)>(a+10))

Read Solution (Total 1)

SELF Other Question

switch(option)
{
case 'H' : printf("Hello");
case 'W' : printf("Welcome");
case 'B' : printf("Bye");
break;
}
what would be the output if option = 'H' ?
What value of c will get printed
main()
{
int a,b,c;
a=10;
b=20;
c=printf("%d",a)+ ++b;
printf("n%d",c);
}