Q135
What will be the output of the following C code? #include int main() int a = 10, b = 5, c = 3; b != !a; c = !!a; printf("%d %d", b, c);
A.
5 1
AnswerB.
0 3
C.
5 3
D.
1 1
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board