Question 16
Answer saved
Marked out of 1.00
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;
Ob. int p*;p=&age;
c. int*p;p=&age;
Od. *int p;p=&int age;
Clear my choice