Computer Science, asked by diwakardildarsingh66, 1 month ago

Name the two string operators.​

Answers

Answered by Anonymous
0

Answer:

In many programming languages, string concatenation is a binary infix operator. The + (plus) operator is often overloaded to denote concatenation for string arguments: "Hello, " + "World" has the value "Hello, World" .

Answered by stebins777
0

There are two string operators. The first is the concatenation operator (‘.‘), which returns the concatenation of its right and left arguments. The second is the concatenating assignment operator (‘.=‘), which appends the argument on the right side to the argument on the left side

Similar questions