Electrical and Computer Engineering
13 of 22
UAH
CPE 112
Modified Example
•//*****************************************************
•// Welcome program
•//*****************************************************
•#include <iostream>
•using namespace std;
•
•void PrintLines(int); function prototype
•int main()
•{
•   PrintLines(2);
•   cout << “Welcome Home!” << endl;
•     PrintLines(4);
•   return 0;
•}
•