Comment on the following C statement. n = 1; printf("%d, %dn", 3*n, n++);
Posted: Wed Jul 13, 2022 7:53 pm
a) Output will be 3, 2
b) Output will be 3, 1
c) Output will be 6, 1
d) Output is compiler dependent
b) Output will be 3, 1
c) Output will be 6, 1
d) Output is compiler dependent