Convert character sequence to numeric in c code example
Example 1: c convert char to int
int i = (int)(c - '0');
Example 2: char to int in c
strcpy(str, "98993489");
val = atoi(str);
printf("String value = %s, Int value = %d\n", str, val);