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