Got another quick question. In vb6, to combine more than 1 string of data into a single string, you would do the following

string = "Statement1" & AnotherString & "Statement2"

how would this be accomplished in c++ ?? I've tried the following

Code:
char * string

string "Statement1", string2, "Statement2";
the above simply outputs "Statement1", and nothing else.

then i tried

Code:
string "Statement1" string2 "Statement2";
The above gets an error.

How do i do it then ?

Thanx for any input.