Programming Tutorials

Comment on Tutorial - left shift operator, <<, in Java By Emiley J



Comment Added by : vikas

Comment Added at : 2017-02-23 07:27:51

Comment on Tutorial : left shift operator, <<, in Java By Emiley J
public static void main(String[] arg) {
int a=12;
int i;
i=a<<12;
System.out.println(i);

please telll how it will work????

Thanks


View Tutorial