How do I declare an array of N pointers to functions
returning pointers to functions returning pointers
to characters?
Answers were Sorted based on User's Feedback
#include <stdio.h>
/*
* How do I declare an array of N pointers to functions
* returning pointers to functions
* returning pointers to characters?
*/
int
main()
{
typedef char *f1();
typedef f1 *(*f2[4])();
return 0;
}
Best,
Vijay Zanvar,
Home Page - http://geocities.com/vijoeyz/
| Is This Answer Correct ? | 8 Yes | 3 No |
How to explain the final year project as a fresher please answer with sample project
What is array of structure in c?
Where are some collections of useful code fragments and examples?
What is use of null pointer in c?
Explain what are the __date__ and __time__ preprocessor commands?
please send me the code for multiplying sparse matrix using c
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
What is modifier & how many types of modifiers available in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
Is c weakly typed?