How do I declare an array of N pointers to functions
returning pointers to functions returning pointers to
characters?
Answer Posted / ashutosh tiwari
char *(*(*a[N])())();
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is the right way to use errno?
Explain how can you tell whether a program was compiled using c versus c++?
How many levels of pointers have?
What are the header files used in c language?
What are the basic data types associated with c?
Explain what is the benefit of using an enum rather than a #define constant?
Explain bitwise shift operators?
Explain b+ tree?
What is a struct c#?
What is the function of this pointer?
How can I write a function analogous to scanf?
Is Exception handling possible in c language?
What is cohesion in c?
The __________ attribute is used to announce variables based on definitions of columns in a table?
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)