Basically I just need to fill the string with all the letters from the vector. The vector is of type char, but it shouldn't matter right? When I debugged it, it said the size of string was still 0? Here's a snippet of code.
NOTE: Vector size is 7 (tested in output) so the problem doesn't seem to lie in the vector.
vector<char> final; //note this gets filled before reaching the loop
// fills vector in here, size is now 7
string* complete;
complete = new string[final.size()]; //set size of string to vector size
//debugger says size of complete is 0????
for (int i = 0; i < final.size(); i++) {
complete[i] = final[i]; //should fill string
}
cout << "COMPLETE:" << *complete << endl; //one letter output