void pointers & void function pointers



Hello,
Is it possible, using casting to promote...

void *Ptr;

To behave like...

void (*FnPtr)(void);

?

i.e. Can the 'void *Ptr' be cast into calling a function once it points to
one?

Cheers

Peter.


.



Relevant Pages