Q. What is the output of C Program?
Code:
int main()
{
int a=10, b, c;
b=a++;
c=++a;
printf("%d %d %d", a, b, c);
return 0;
}
β
Correct Answer: (B)
12 10 12