Explore Westonci.ca, the leading Q&A site where experts provide accurate and helpful answers to all your questions. Get the answers you need quickly and accurately from a dedicated community of experts on our Q&A platform. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.

What are the values of the variables a, b, and c after the following code fragment has been executed?

int a=5, b=6, c=3;
c = (++a + b++) * ++c;

A. a=6, b=8, c=48
B. a=6, b=7, c=48
C. a=6, b=7, c=47
D. a=6, b=8, c=47