Hey what would be the correct syntax for a vector of char* with a size of [2]? ive got it written like this..
vector< char* > myVector();
vector< char* > ::iterator myIterator;
// reads in something
myVector.push_back(temp);
myIterator = myVector.begin();
cout << myIterator << endl;
why does it cout nothing?