How do I declare an array of N pointers to functions
returning pointers to functions returning pointers
to characters?
Answer Posted / raj kumar
char *(*(*a[N])())();
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
In C language, a variable name cannot contain?
Do you know the purpose of 'register' keyword?
What is #ifdef ? What is its application?
Why void main is used in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What are nested functions in c?
develop algorithms to add polynomials (i) in one variable
What is c value paradox explain?
What is structure of c program?
What is else if ladder?
When should you use a type cast?
What is chain pointer in c?
How are pointers declared in c?
What are enums in c?