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 are type modifiers in c?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is a global variable in c?
What is bubble sort in c?
What is array of structure in c programming?
What is getch c?
Why c is called a mid level programming language?
What is the value of uninitialized variable in c?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
where are auto variables stored? What are the characteristics of an auto variable?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What does *p++ do?
What are the key features in c programming language?
What is assignment operator?
What are the differences between Structures and Arrays?