britneybt4728 britneybt4728 10-06-2024 Computers and Technology Answered 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=48B. a=6, b=7, c=48C. a=6, b=7, c=47D. a=6, b=8, c=47