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
AnswerC.
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