Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How do I declare an array of N pointers to functions
returning pointers to functions returning pointers
to characters?

Answer Posted / vijay zanvar

#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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain pointers in c programming?

1106


Write a program to print “hello world” without using semicolon?

1118


What are types of functions?

1032


Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?

1064


Explain what is a program flowchart and explain how does it help in writing a program?

1093


What do you mean by invalid pointer arithmetic?

1068


What is the best way of making my program efficient?

1029


‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.

2332


How do you determine whether to use a stream function or a low-level function?

1119


Is fortran still used today?

1089


Write a program to print factorial of given number without using recursion?

985


What are linked lists in c?

1125


Does c have class?

1101


What is extern variable in c with example?

988


What are the basic data types associated with c?

1266