header

Homework 1

Enter, compile, and run the program given below with these changes:

Save your program file as "Hmwk01.cpp" and send it to me as an email attachment.

Program Code

//----------------------------------------------------------
// MyFirst
//
// This program displays my name on the output window.
//
// Del Searls
// Asbury College
// Aug 23, 2006
//----------------------------------------------------------

#include <iostream>
using namespace std;

int main()
{
    cout << "**********************" << endl;
    cout << "My name is Del Searls." << endl;
    cout << "**********************" << endl;

    return 0;
}