#include #include using namespace std; void hello(string); void hello(string n) { cout << "Hello " << n << endl; return; } int main() { string name; string word; name="Lawrence"; word="Hi"; hello(name); hello(word); return 0; }