Vidyalelo
C Programming · Q91

C Fundamentals

Programming · C Programming · question 91

Q91

What will be the output of the following C code? #include int main() int y = 2; int z = y +(y = 10); printf("%d ", z);

A.
12
B.
20
Answer
C.
4
D.
Either 12 or 20

Answer: Option B

Solution

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