can you set a char to int in c code example
Example 1: turn a char into an int in c
int x = character - '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 x = character - '0';
strcpy(str, "98993489");
val = atoi(str);
printf("String value = %s, Int value = %d\n", str, val);