How do I declare an array of N pointers to functions
returning pointers to functions returning pointers
to characters?
Answer Posted / raj kumar
char *(*(*a[N])())();
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Explain 'bus error'?
What is a char c?
How can I get the current date or time of day in a c program?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is variable and explain rules to declare variable in c?
How can you determine the maximum value that a numeric variable can hold?
What are runtime error?
What is define c?
What are dangling pointers? How are dangling pointers different from memory leaks?
Explain setjmp()?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What are the data types present in c?
what is the difference between class and unio?