how do you do it ?
This is a discussion on How to combine 2 strings ? within the C++ Programming forums, part of the General Programming Boards category; how do you do it ?...
how do you do it ?
You can combine two strings by using char * strcat ( char * dest, const char * src ); (remember to include string.h, or cstring)
Go here for more info: http://www.cplusplus.com/ref/
combining two stl strings is as easy as:
Code:three= one + two;