In the following code what is 'P'?
typedef char *charp;
const charp P;
a. P is a constant
b. P is a character constant
c. P is character type
d. None of the above
ANSWER: P is a constant
typedef char *charp;
const charp P;
a. P is a constant
b. P is a character constant
c. P is character type
d. None of the above
ANSWER: P is a constant
Post a Comment