Answers for "what is \t in java"

1

\t\t java

public static void main(String args[]) {
          String str1 = "Hello";
          String str2 = "world";
          System.out.println(str1 + "\t" + str2);
}
// \t is a tab space
output: Hello	world
Posted by: Guest on June-19-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language