#include <iostream>
usingnamespace std;
void myOtherFunction() {
cout << endl << "And this is the result.";
}
void myFunction(void (*otherFunction)(), char parameter[80]) {
cout << parameter;
(*otherFunction)();
}
int main() {
myFunction(&myOtherFunction, "I am calling a function with a function.");
cin.ignore(80,'\n');
return 0;
}