Vidyalelo
C Programming · Q76

C Fundamentals

Programming · C Programming · question 76

Q76

What will be the output of the following C code? #include int main() j = 10; printf("%d ", j++); return 0;

A.
10
B.
11
C.
Compile time error
Answer
D.
0

Answer: Option C

Solution

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