Q156
What will be the output of the following C code? #include void main() char a = '0'; char b = 'm'; int c = a && b || '1'; printf("%d ", c);
A.
0
B.
a
C.
1
AnswerD.
m
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board