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 different bitween abap and abap-hr?
Can we replace the struct function in tree syntax with a union?
What are the types of variables in c?
What is the use of pointers in C?
Where are c variables stored in memory?
Why c is called top down?
What is pass by reference in functions?
What are # preprocessor operator in c?
What are identifiers and keywords in c?
how to create duplicate link list using C???
Can we access the array using a pointer in c language?
Is main is a keyword in c?
Explain how can I make sure that my program is the only one accessing a file?
Write a program for Overriding.
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol