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