The __________ character is used for the concatenation of string.
Answers
Answered by
13
➠ AnSwer :-
- The + (plus) operator is often overloaded to denote concatenation for string arguments: "Hello, " + "World" has the value "Hello, World" . In other languages there is a separate operator, particularly to specify implicit type conversion to string, as opposed to more complicated behavior for generic plus
Answered by
2
Plus operator '+' is used to concatenate string.
Fir example,
String a="Hello", b="Boy";
String s=a+b;
s will return HelloBoy after concatenating the strings.
Similar questions