(Choose 1 answer)
Suppose age is an integer variable. Select correct statements which declare a pointer of type integer and assign an address of the variable age to it.
A. int p*; p = &age;
B. *int p; p = &age;
C. int *p; p = &age;
D. int *p; p = age;
E 40