int * (*) (int * , int * (*)())
I’d like to know what type is it ? , can someone give an example of a declaration using this type.
any help would be great.
thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is a pointer to function that returns
int*and acceptsint*and pointer to function that returnsint*(and accepts undefined number of parameters; see comments).Some example (does not look very nice, it is just constructed to contain the mentioned declaration):