I want to create a string in C++ by starting with a base then adding 
more. In C i would do something like:

char str[128];

strcpy(str, "first part of string");
strcat(str, "--second part of string");

How would I do this in C++?

~Rick

Reply via email to