Vidyalelo
C Programming · Q156

C Fundamentals

Programming · C Programming · question 156

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
Answer
D.
m

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board