Hey, ive debugged my program to this line, and im not sure what to use, strcpy or some other thing, but i need to get the string from a[x] in to the new string c[z]. Any suggestions?
string a[100];
string c[100];
if (a[x].compare(b[y])==0)
{
c[z] = a[x]; //doesnt work
z++;
}
I have also attached the full program if needed. Thank you
-Scott