String connection

how to add up to strings let's say i have string1="Hello " and string2="World!"

what should i do to 'connect' them?
closed account (3qX21hU5)
string3 = string1 + string2;
Last edited on
string1 + string 2

or append, if those are c-strings
Last edited on
Topic archived. No new replies allowed.