Teaching UGC NET Mock Test Series 2025 (Paper 1 & 2) Programming and Data Structure Programming in C Pointer
What is x in the following program?
#include < stdio.h >
int main ( )
{typedef (* (*arrfptr [3]) ( ) ) [10];
arrfptr x;
return 0 ;
}
1
x is a pointer
2
x is a array of three pointer
3
x is an array of three function pointer
4
Error in x declaration