Friday, March 24, 2017

Additive Operator for String Concatination

Hi all,

Let's take a look how we can use Additive Operator for String concatination. String Concatination means joining two or more String values to make a lager String.

Let's take a look at following example,

String a = "Hello";
String b = "World";

String c = a + b;

Now the value of c is "HelloWorld"


No comments:

Post a Comment