Operator C Tutorial

#include 
int main(){
   int x, y = 6;
   x = y >> 1;
  
   printf("%d",x);
   x = y/2;
  
   printf("%d",x);
}