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
Write a program in c to replace any vowel in a string with z?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What does the c in ctime mean?
What should malloc() do?
Can you define which header file to include at compile time?
How do you print only part of a string?
Explain enumerated types in c language?
What’s the special use of UNIONS?
When c language was developed?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Describe explain how arrays can be passed to a user defined function
What are the types of c language?
What is the hardest programming language?
Can you subtract pointers from each other? Why would you?