fork(1) download
  1. #include <stdio.h>
  2. #include <inttypes.h>
  3.  
  4. int main(void) {
  5. int64_t ans = (int64_t)2147483647 + 1;
  6. printf("%lld",ans);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
2147483648