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
the above simply outputs "Statement1", and nothing else.Code:char * string string "Statement1", string2, "Statement2";
then i tried
The above gets an error.Code:string "Statement1" string2 "Statement2";
How do i do it then ?
Thanx for any input.![]()




Reply With Quote