+ 1

what is string cancatenation?

18th Dec 2017, 2:54 PM
HN Kashyap
HN Kashyap - avatar
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)
18th Dec 2017, 3:27 PM
Jeremy
Jeremy - avatar
0
Hi, its simply a synonym for appending one string to. another, like: "first part" + " second" = "first part second"
18th Dec 2017, 3:28 PM
Gunther Strauss
Gunther Strauss - avatar