Welcome to Westonci.ca, where you can find answers to all your questions from a community of experienced professionals. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform.

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