What\'s the fastest and easiest to read implementation of calculating the sum of digits?
I.e. Given the number: 17463 = 1 + 7 + 4 + 6 + 3 = 21
int num = 12346; int sum = 0; for (int n = num; n > 0; sum += n % 10, n /= 10) ;