How to print value with ""
Hi All,
I am trying to print a String with "Value" can anyone please provide me a code sample for that.
What I am trying to print is -
String Result = "a" + "b";
System.out.println("Result = " + Result );
This is giving me Result = ab
Where as I want Result = "ab"
Thanks in Advance
Sameer

