Question: Given the following variable declarations: int a = 5,b = 6, c; What is the value of a. b. and c after each of the following statements executes? Assume that the statements execute in the sequence given. a=b++ + 3; c=2*a+ ++b; b=2* ++c - a++;