How to declare this function...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Sreeramu
    New Member
    • Apr 2007
    • 11

    #1

    How to declare this function...

    Declare a pointer to a function which takes array of pointer to a function as an argument and return the pointer to a function.....

    how to declare this....
  • gpraghuram
    Recognized Expert Top Contributor
    • Mar 2007
    • 1275

    #2
    Originally posted by Sreeramu
    Declare a pointer to a function which takes array of pointer to a function as an argument and return the pointer to a function.....

    how to declare this....

    Go through K&R C book to get an answer for this

    raghuram

    Comment

    • weaknessforcats
      Recognized Expert Expert
      • Mar 2007
      • 9214

      #3
      I think this going to be very hard to do. You can return a type from a function or a pointer to a type-and that's all. That is, you cannot return the address of an array or a function.

      Comment

      Working...