fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char* test = " 4396";
  5. char *ptr;
  6. int result = strtol(test,&ptr,10);
  7. printf("%d\n",result);
  8. printf("%d\n",strlen(ptr));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
4396
0