/************************************************************ Name: Matt Bolduc Date: Jan 12 2005 Project: #2 Section: # Put your name, date, project, file name and section number here. Describe the overall object of the project. You enter your name, and it outputs it with something else.. wow. **********************************************************/ #include // needed for cin and cout operations using namespace std; //selects a name space required to recognize cin and cout void main() { char curname[50]; // declare a variable to hold your name // Use cout to prompt for your name. cout << "Enter your name: "; // Use cin to get your name. cin >> curname; // Output your message and then your name. cout << "Hello " << curname << ". Enjoy by the way, I eat monkey brains." << endl; // Feel free to be creative with the message. // The message coupled with your name should be polite and correct English. }// end of main