A Java Program to show the use of operator (<<) Shift Left filling with zero from the right.
publicclass JAVA_011 { publicstaticvoid main(String[] args) { int a=59085; // 1110011011001101int b=(a<<3); // 0011011001101000 System.out.println("a = 1110011011001101 = " + a); System.out.println("b = a<<3 = 0011011001101000 = " + b); } }