Function pointer
How to assign function pointer to static function?
if int fn(char ch,int a) is static function then function pointer type to above static function will be int (*)(char , int )
Using the class name. In case of non static function we need to use the this pointer.
Engineering
Interview Coaching
Interview Questions
Tech FAQs
What do you do when things do not go as planned? Cite an example.
How do you deal and overcome major challenges?
What are the career options available in Software Testing Industry?
Do you like working in a team or alone? Explain.
How do you handle difficult situations?
Have you gone above and beyond your job description?
BPO Career for BTech Graduates
What are my options when I do not get a job after graduation?
What are the things you wish to achieve in 5 years?
Have you experienced being given too many tasks?
Ask Interview Question?
Have Career Question?
Ask Chandra
Ask Only Career questions.
if int fn(char ch,int a) is static function then
function pointer type to above static function will be
int (*)(char , int )
Using the class name. In case of non static function we need to use the this pointer.