GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Placement Papers  >  Intel  >  Programming

 Print  |  
Question:  

one qn about pointer to funciton :

how will a pointer to a pointer to a function will be declared

void *(*ptr[]));

void *ptr[];

void (**ptr[]





October 10, 2005 07:29:29 #1
 kevin daniel varghese   Member Since: Visitor    Total Comments: N/A 

RE: one qn about pointer to funciton :h...
 
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
     

 

Back To Question