An unsigned integer is of 2 bits.
What i wnat to do is to shift an int a right one time and at the same time obtain the A(15) bit in some variable how can i do that?
i know this will perform a right shift on int a and store the result int b.
int a;
int b=a<<1;