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
Can a pointer be volatile in c?
Explain what is a stream?
Is c dynamically typed?
How do you declare a variable that will hold string values?
Can you please explain the difference between malloc() and calloc() function?
Can we initialize extern variable in c?
Write a program to print "hello world" without using a semicolon?
What is sizeof in c?
How can you invoke another program from within a C program?
What is variable and explain rules to declare variable in c?
Hai what is the different types of versions and their differences
What does == mean in texting?
what is the function of pragma directive in c?
Explain built-in function?
What is a header file?