0
What is /n this ?
I don't know what is /n means.I see it is used in printing.
6 Respostas
+ 2
It's "\n", not "/n"
+ 1
Please demonstrate with example
+ 1
line breakee
0
new line
0
thanks everyone for clearing my doubts
- 1
There is nothing like /n.
\n is the new line feed which breaks the line in a printing statement in most languages.
System.out.println("Hello\nJava");
This will output:
Hello
Java
Hope I helped...