r = applyboth(floor, sqrt, x); // returns result of floor(sqrt(x))The applyboth function assumes the data parameter and the functions' return values are all the same type. You'll need to create a template for applyboth with three parameters (the two functions and the data value). This should be relatively easy to construct by following the higher.cpp example (in the examples subdirectory of the repo).
r = printAll(a, b, c, d); would have the same effect as cout << '\t' << a; cout << '\t' << b; cout << '\t' << c; cout << '\t' << d; cout << endl;