#include #include using namespace std; // illustrates function prototypes void Hi(string); void Greetings(); void Hi(string name) { cout << "Hi " << name << endl; Greetings(); } void Greetings() { cout << "Things are happening inside this computer" << endl; } int main() { Hi("Fred"); return 0; }