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