fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <stdint.h>
  4. #include <stdbool.h>
  5. #include <string.h>
  6. #include <unistd.h>
  7.  
  8. int
  9. main(int argc, char *argv[])
  10. {
  11. bool a = true;
  12. printf("%d %d\n", a -= 10, a - 10);
  13. return EXIT_SUCCESS;
  14. }
  15.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
1 -9