public static void main(String[] args)
{
int h = 30;
h ^= (h >>> 20) ^ (h >>> 12);
System.out.println(h);
}
If int h = 30 whose binary is 0001 1110. After operation what value will stored in h?
public static void main(String[] args)
{
int h = 30;
h ^= (h >>> 20) ^ (h >>> 12);
System.out.println(h);
}
If int h = 30 whose binary is 0001 1110. After operation what value will stored in h?