What do you mean by Concatenation? please give correct answers and please give fast and help
Answers
Answer:
a series of interconnected things.
"a concatenation of events which had finally led to the murder"
In formal language theory and computer programming, string concatenation is the operation of joining character strings end-to-end. For example, the concatenation of "snow" and "ball" is "snowball
Please Mark Me The BRAINLIEST
___________________________
➡ Concatenation is defined as combining a string, text, etc. in a series without any cavity between them . It is used to denote operating tools in a computer programming.
✴ Java concatenate :-
Output
"Hello, how are you?"
Input
System.out.println("Hello," + " how are you?");
✴ Perl concatenate :-
Output
"Hello, how are you?"
Input
print "Hello, " . "how are you?";
The syntax in different programming languages :-
- hello & world
- strcat(hello, world)
- hello.world
- hello || world
- hello || world
- hello ++ world
- hello ^ world
- hello+world
_____________________________________