Note: vector < vector < string > > addresses;
I am having a problem with this line of code:
addresses.push_back(addy.c_str);
I am trying to push back an email address in the i location
of the 2-d vector.
I have tried:
addresses.push_back[(addy.c_str)];
and
addresses.push_back[(addy.c_str)];
but nothing is working >:/ I appreciate the help!