Preprocessor commands
Home
>
C Quiz
>Preprocessor commands
Question 1 of 13
With the below statements, what are the types of p1,p2,p3 and p4?
#define INTPTR int *
typedef int * INTPTR2;
INTPTR p1,p2;
INTPTR2 p3,p4;
All are integer pointers
All are integers
p2 is integer. Others are integer pointers
None of the above