Q. Comment on the following C statement.
Code:n = 1;
printf("%d, %dn", 3*n, n++);
β
Correct Answer: (D)
Output is compiler dependent
n = 1;
printf("%d, %dn", 3*n, n++);
You must be Logged in to update hint/solution