One qn about pointer to funciton :how will a pointer to a pointer to a function will be declaredvoid *(*ptr[]));void *ptr[];void (**ptr[]

Showing Answers 1 - 1 of 1 Answers

kevin daniel varghese

  • Oct 14th, 2005
 

void (* ( * pp ) )( ) ;where pp is pointr to pointr to a function returning void and having any no:of argumentz.To call function use (* ( *pp ))( );//MNNIT ALD

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions