fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char s[30] = { "115" };
  5. long long t = atoll(s);
  6.  
  7. printf("Value is: %lld\n", t);
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
Value is: 115