Q. What is the output of C program?
Code:#include <stdio.h>
int main()
{
int i = 3;
printf("%d", (++i)++);
return 0;
}
β
Correct Answer: (D)
Compile-time error
#include <stdio.h>
int main()
{
int i = 3;
printf("%d", (++i)++);
return 0;
}
You must be Logged in to update hint/solution