A special feature of the >> and <<: perform superfast binary division and multiplication. : Bitwise Operator « Operator « C Tutorial






#include <stdio.h>
int main(){

   int x, y = 6;

   x = y >> 1;
  
   printf("%d",x);

   x = y/2;
  
   printf("%d",x);
}








5.7.Bitwise Operator
5.7.1.Bitwise operator
5.7.2.Bitwise and: c1 & c2
5.7.3.Bitwise or: c1 | c2
5.7.4.Bitwise XOR: c1 ^ c2
5.7.5.Complement: ~
5.7.6.Left shift operator
5.7.7.Right shift operation
5.7.8.A special feature of the >> and <<: perform superfast binary division and multiplication.
5.7.9.To divide value by 4