A Java Program to show the use of operator (>>>) Shift Right, filling with zeros from the left.
publicclass JAVA_013 { publicstaticvoid main(String[] args) { int a=59085; // 1110011011001101int b=(a>>>3); // 0001110011011001 System.out.println("a = 1110011011001101 = " + a); System.out.println("b = a>>>3 = 0001110011011001 = " + b); } }