Modified Example
//*****************************************************
// Welcome program
//*****************************************************
#include <iostream>
using namespace std;
void PrintLines(int);  function prototype variable list
int main()
{
     PrintLines(2);
     cout << “Welcome Home!” << endl;
     PrintLines(4);
     return 0;
}