Q35
Determine output: main() int i = abc(10); printf("%d", --i); int abc(int i) return(i++);
A.
10
B.
9
AnswerC.
11
D.
None of these.
Answer: Option B
Solution
Answer: Option B
Solution:
return(i++) it will first return i and then increment. i.e. 10 will be returned.