natybrocks9690 natybrocks9690 16-05-2023 Computers and Technology contestada examine the following code. what is stored in a after it runs. int f(int * p, int x) { *p = x * 2; return x / 2; } . . . int a = 3, b, c; c = f(&b, a);