fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. int a = atoi("-80");
  6. printf("a tem %d\n", a);
  7. return 0;
  8. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
a tem -80