I\'m going through some practice problems, and I saw this code:
#include #include int main(void) { char* s = \"357\";
Finding the sum of the numbers in the string s.
The sum += s[i] - 48; converts ASCII characters to their numeric values.
sum += s[i] - 48;