fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. unsigned long long a = 0, b = 1ULL << 33;
  5.  
  6. a = a|b;
  7. if(!(a&b))
  8. printf("!(a&b)\n");
  9. else
  10. printf("(a&b)\n");
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
(a&b)