would any body tell me about the concept behind callback functions
This is a discussion on Callback fuction within the C++ Programming forums, part of the General Programming Boards category; would any body tell me about the concept behind callback functions...
would any body tell me about the concept behind callback functions
The concept is that you pass the address of a function to another function and that function can call that function you passed as a "callback." It can pass information or call it during certain events, and so on.
For information on how to enable C++11 on your compiler, look here.
よく聞くがいい!私は天才だからね! ^_^
I think callback functions are more of a C concept, which have been replaced by function objects (functors or delegates) in C++.