fork download
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. printf("%d",2<<2>>2);
  6. printf("\n%d",2>>2<<(1<<1));
  7. }
  8.  
Success #stdin #stdout 0s 4436KB
stdin
Standard input is empty
stdout
2
0