921 views
0 votes
0 votes

2 Answers

1 votes
1 votes
(A) q is taking function a pointer to a charecter as argument and returning integer.

(B)q is taking function a pointer to a charecter as argument and returning pointer to an array of integer type.

(C) q is a pointer to taking function a pointer to a charecter as argument and returning array of integer

So, Ans (D) None of these

http://c-faq.com/decl/spiral.anderson.html
0 votes
0 votes

although the option is D 

it would have correct if it had declared this way

int(* q(char *))[  ]

Related questions