Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
hi!
Wie kann ich einer Funktion als Parameter die Adresse einer anderen Funktion übergeben? Geht das überhaupt?
Danke, chris90
void call(void (*funktion)()) { funktion(); } void foo() { cout << "foo"; } int main() { call(foo); }