Operator C Tutorial

# include
main()
{
  char c1 = 1,c2 = 2,c3 = 3;
  c3 = c1>>2;
  printf("\n right shift by 2 bits c1 >> 2 = %c",c3);
}