How to initialise a function pointer for any particular function in
C++ ?
so that it would clearly specify difference between the functions that
are called by different objects of that class ...
i.e
instead of
a.function();
or
b.function();
use of this -->
int (*funcptr)(void ); ???? How ?
C++ ?
so that it would clearly specify difference between the functions that
are called by different objects of that class ...
i.e
instead of
a.function();
or
b.function();
use of this -->
int (*funcptr)(void ); ???? How ?
Comment