Assuming that all variables are integers, the value of the expression (a=2,b=a++,b++,a+b is
a=2,
b=a++,//B is equal to 2, A is equal to 3; this formula is to first assign the value of A to B, and then A will add 1 to itself ( That is equivalent to B=A;A++).