fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. unsigned int a = 15;
  6. unsigned short b = 0x1;
  7. if(a & b)
  8. printf("odd");
  9. else
  10. print("even");
  11. }
  12.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
odd