fork(1) download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3.  
  4. int main(void) {
  5. int32_t data = -128;
  6.  
  7. if (data > 0) {
  8. printf("俺は+");
  9. } else {
  10. printf("いいやマイナスだね");
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
いいやマイナスだね