Interview Questions

What are x, y, y, u ???

C Interview Questions and Answers


(Continued from previous question...)

What are x, y, y, u ???

What are x, y, y, u
#define Atype int*
typedef int *p;
p x, z;
Atype y, u;



Answer: x and z are pointers to int. y is a pointer to int but u is just an integer variable

(Continued on next question...)

Other Interview Questions