1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int p = 20, q = 10, r = 10;
int s;
s = p == (q + r);
printf("%d", s);
}

A. 20
B. 10
C. Compilation Error
D. 1
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs