Page 1 of 1

Comment on the following C statement. n = 1; printf("%d, %dn", 3*n, n++);

Posted: Wed Jul 13, 2022 7:53 pm
by answerhappygod
a) Output will be 3, 2
b) Output will be 3, 1
c) Output will be 6, 1
d) Output is compiler dependent