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
How can I implement sets or arrays of bits?
Why double pointer is used in c?
Is that possible to store 32768 in an int data type variable?
What does the c in ctime mean?
What is the value of h?
Why can’t we compare structures?
write an algorithm to display a square matrix.
What is linear search?
What are the types of type qualifiers in c?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
What are the __date__ and __time__ preprocessor commands?
How to throw some light on the b tree?
What is pragma in c?
Write a program to swap two numbers without using a temporary variable?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)