char 5 to int 5 converter 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);
int i = (int)(c - '0');
strcpy(str, "98993489");
val = atoi(str);
printf("String value = %s, Int value = %d\n", str, val);