Q. What will be the output of the following statements ?
Code:
int i = 3; printf(“%d%d”,i,i++);
β
Correct Answer: (C)
43
int i = 3; printf(“%d%d”,i,i++);
You must be Logged in to update hint/solution