System.out.println(s+" "); why this" " | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

System.out.println(s+" "); why this" "

24th Jan 2017, 6:29 AM
Great Srrr
Great Srrr - avatar
2 Answers
+ 3
this " " just mean that it will output a whitespace.
24th Jan 2017, 7:04 AM
malicious
+ 1
little example String a= "a"; String b= "b"; System.out.prinln (a+" "+b); The output is: a b hope it helps
24th Jan 2017, 7:07 AM
malicious