Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

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

Comment on the following statement.
n = 1;
printf(“%d, %dn”, 3*n, n++);
a) Output will be 3, 2
b) Output will be 3, 1
c) Output will be 6, 1
d) Output is compiler dependent

Answer: d

Join The Discussion