Vidyalelo
C Programming · Q135

C Fundamentals

Programming · C Programming · question 135

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
Answer
B.
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