fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int x = 4;
  6. if (x % 2) {
  7. printf("test");
  8. } else{
  9. printf("test 1");
  10. }
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
test 1