Question: In the following code, the P2 is Integer Pointer or Integer?typedef int *ptr;
ptr p1, p2;
A
B
C
D
Integer
B
Integer pointer
C
Error in declaration
D
None of above
Note: Not available
typedef int *ptr; ptr p1, p2;
typedef char *charp; const charp P;
typedef char *charp; const charp P;
#include<stdio.h> int main() { typedef char (*(*arrfptr[3])())[10]; arrfptr x; return 0; }