We want to declare x, y and z as pointers of type int. The alias name given is: intpt The correct way to do this using the keyword typedef is:
A. int typedef* intptr;
int x,y,z;
B. typedef* intptr;
int x,y,z;
C. int typedef* intptr;
intptr x,y,z;
D. typedef int* intptr;
intptr x,y,z;
Answer: Option D
Join The Discussion