Consider the following function prototypes and variable declarations:
void Func1 (double, char &);
bool Func2 (double, double);
double Func3 (bool);
double d1, d2; char c;
Without additional function or variable, how do I write ONE C++ statement to call ALL THREE functions: Func1, Func2, and Func3?