Vidyalelo
C Programming · Q143

C Fundamentals

Programming · C Programming · question 143

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
Answer
C.
2
D.
Compile time error

Answer: Option B

Solution

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