//Allan Clark AllanCStep.cpp// //sept 12/02 // //to display the steps of using C++ using COUT statements// #include // a library call for a standard I/O// #include // a library call to clear the screen // #include // a library call to aquire the systems date // char name[30]; main() { //Opens a routine/body for code statements// // First Screen Prompting // cout<<"Welcome to: ""The steps of making a program"""<> name; cout << endl << endl; clrscr(); // Clears the Screen // time_t t=time(NULL); cout<< ctime(&t)<< endl << endl; //Displays the time// cout<<"Welcome to the Steps in Setting up a C++ Program, "; cout << name; cout<< endl << endl; cout<<"1. Open a new program - editor window."<