fork download
  1. int main(void){
  2. int x=5;
  3. printf("%d", x&10);
  4. printf("%d", x^5);
  5. printf("%d\n", (x&1)<<2);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
004