// demo for pointers and overloading // Christoph Federrath, 2016 #include using namespace std; // define function that takes a double a, then manipulates a and prints it void manipulate(double a) { cout << "called manipulate(a)..." << endl; a = 9.9; cout << "a = " << a <