+ 1
what is string cancatenation?
2 Answers
0
simply placing one string after another
example:
String1 = abc
String2 = def
String1+String2 = abcdef (plus sign is the concatenation operator not addition operator)
0
Hi,
its simply a synonym for appending one string to. another, like:
"first part" + " second" = "first part second"