I have string like
\"I am a boy\".
I want to print like this way
Can anybody help me?<
\n is used for making separate line;
\n
Example:
System.out.print("I" +'\n'+ "am" +'\n'+ "boy");
Result:
I am boy