c right bit shift

C
// 5: 0...0101
int a = 5;
//shift int a 2 bits
int n = (a >> 2);
Source

Also in C: