SELF Exam Programming

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);
}

Read Solution (Total 0)

SELF Other Question

Suppose a,b,c are integer variables with values 5,6,7 respectively. What is the value of the expression:
!((b+c)>(a+10))
What the below statement will print if a=10
printf("%d %d",a, !a++);