Examveda
Examveda

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


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals