Vidyalelo
C Programming · Q61

C Fundamentals

Programming · C Programming · question 61

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
Answer
B.
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