(Choose 1 answer)
Which statement of the following code result in an error if a and b are declared as integer variables and p as a pointer variable pointing to an integer and the value of a = 220.
A. p = &a;
B. b = *p;
C. b = *p+*a++;
D. a = b;
Q: 33