Find the expression output the same results in C++ as b = pow(a,2); Group of answer choices b = 3 * a; b = a *a; b = a * a * a; b = a ^ 3;