/*****
//<plaintext>

 To ensure that you have a working environment,
 compile and execute the following program.

 If you have problems doing this , then you will need 
 to have access to an updated C++ environment.

 This course requires the use of Visual C++ 6.0 or
 gnu g++ version 2.8.1 or later.

 Come and talk to me if you cannot compile and
 run this program in your development environment.

 Upon execution, this program should print out the string 
   Aud Thurman

****/
//The following stts are to shut-up excessive warnings in VC++
#pragma warning (disable: 4503)
#pragma warning (disable: 4708)
#pragma warning (disable: 4786)

#include <string>
#include <iostream>
#include <vector>
using namespace std;

int 
main()
{
   vector<string> v;
   v.push_back("Thurman");
   
   string s = "Aud";
   cout << s << " " << v.front() << endl;
   return 0;
}
