C Programming :: Typedef
-
In the following code, the P2 is Integer Pointer or Integer?
typedef int *ptr; ptr p1, p2;
-
In the following code what is 'P'?
typedef char *charp; const charp P;
-
What is x in the following program?
#include