fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int a = 128;
  6. int b=a>>1;
  7.  
  8. printf("\nvalue of a : %d",a);
  9. printf("\nvalue of b : %d",b);
  10.  
  11. return(0);
  12. }
Success #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
value of a  : 128
value of b  : 64