where u can use pointer to function ?explain with example? and other examples also
pointer to function
Collapse
X
-
Originally posted by satyannawhere u can use pointer to function ?explain with example? and other examples also
pointer to function is also called as function pointer.
Search to get more info on this.
After reading the same if you still have doubts came back here.
Raghuram -
You use a function pointer when you need to decide what function to call at run time. Otherwise, you have to know what function to call before the program runs.Comment
Comment