fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. int x = 56;
  7. if ((x & 1) == 0) {
  8. // x is even
  9. printf("Even");
  10. }
  11. else {
  12. // x is odd
  13. printf("Odd");
  14. }
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
Even