Q143
What will be the output of the following C code? #include int main() int i = 0; int j = i++ + i; printf("%d ", j);
A.
0
B.
1
AnswerC.
2
D.
Compile time error
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board