c turn char of int to int code example
Example 1: int to char in c
c = i +'0';
Example 2: char to int in c
strcpy(str, "98993489");
val = atoi(str);
printf("String value = %s, Int value = %d\n", str, val);
c = i +'0';
strcpy(str, "98993489");
val = atoi(str);
printf("String value = %s, Int value = %d\n", str, val);