How do I declare an array of N pointers to functions
returning pointers to functions returning pointers
to characters?
Answer Posted / vijay zanvar
#include <stdio.h>
/*
* How do I declare an array of N pointers to functions
* returning pointers to functions
* returning pointers to characters?
*/
int
main()
{
typedef char *f1();
typedef f1 *(*f2[4])();
return 0;
}
Best,
Vijay Zanvar,
Home Page - http://geocities.com/vijoeyz/
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
What is the difference between a function and a method in c?
can we change the default calling convention in c if yes than how.........?
Sir i need notes for structure,functions,pointers in c language can you help me please
What is mean by data types in c?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What are local static variables?
What is the difference between struct and typedef struct in c?
What is queue in c?
What is the -> in c?
a c code by using memory allocation for add ,multiply of sprase matrixes
Why use int main instead of void main?
What is the use of a static variable in c?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
why we wont use '&' sing in aceesing the string using scanf
How was c created?