Escape Sequences, print and println methods





This video tutorial explains the escape sequence available in java along with the difference between the print and println method available from System.out.

You will learn what are the escape characters, what is the use of them, how to escape single quote, how to escape double quote, how to add a newline and a tab  in detail with example.


Source code for this video tutorial


package LearningJava;

public class Fish {

 public static void main(String[] args) {
 System.out.println("what is happening,\t whats up");
  
 }

}