Given the declarations
float x;
float* ptr = &x;
what does the following statement do?
*ptr = 24.9;
A. It stores 24.9 into ptr.
B. It stores 24.9 into the variable pointed to by ptr.
C. It stores 24.9 into x.
D. b and c above
E. a, b, and c above