/* Consider this following small example program. */ #include <functional> #include <iostream> using namespace std::placeholders; /* We write a subroutine that outputs the multiple of its arguments, a and b. */ void multiple(int a, int b, const std::string & who)...