For your problem you can use the function strtol()
in the library #include <stdlib.h>
.
How to use strtol
( Sample code from training points )
#include <stdio.h>
#include <stdlib.h>
int main(){
char str[30] = "2030300 This is test";
char *ptr;
long ret;
ret = strtol(str, &ptr, 10);
printf("The number(unsigned long integer) is %ld\n", ret);
printf("String part is |%s|", ptr);
return(0);
}
strtol
str
, , . 2 36, . , 10, . ret
.