Program for String Concatenation in Java
Concatenation is the process of combining two or more small strings to from a bigger string. String concatenation in java can be done in four different ways given below. 1. Using + operator 2. Using concat() method of String class 3. Using append() method of StringBuffer class 4. Using append() method of StringBuilder class In …
