Electrical and Computer Engineering
5 of 22
UAH
CPE 112
Example Implementation (Continued)
•int main()
•{
•   Print2Lines();
•   cout << “Welcome Home!” << endl;
•    Print4Lines();
•   return 0;
•}
•void Print2Lines()
•{
•   cout << “****************” << endl;
•   cout << “****************” << endl;
•}