How do I declare an array of N pointers to functions
returning pointers to functions returning pointers
to characters?
Answers were Sorted based on User's Feedback
#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 |
What is data structure in c and its types?
input any 4 digit number and find the difference of all the digits?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is string function in c?
what is the defrenece between structure and union
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
what is the use of operator ^ in C ? and how it works?
What is volatile variable in c?
Can include files be nested?
Why are algorithms important in c program?
What is call by value in c?