// Dave Goldsmith // Redwood High School // C++ Computer Programming // March 19, 2009 // Vector1.cpp #include #include #include using namespace std; void main() { vector words; words.push_back("cat"); words.push_back("dog"); words.push_back("fish"); cout << "Size of vector: " << words.size() << endl; cout << "List of all words in the vector:\n"; for (int i=0; i