-->

What is x in the following program?

#include<stdio.h>

int main()

{

     typedef char (*(*arrfptr[3])())[10];

     arrfptr x;

     return 0;

}





a. x is a pointer

b. x is an array of three pointer

c. x is an array of three function pointers

d. Error in x declaration










ANSWER: x is an array of three function pointers