After reading such good reviews about K&R2 I finally bought a copy. I've been working through the first chapter and I'm a little confused about a line in the digit and white space-counting program. Here's the code (it's on page 22).
#include <stdio.h>
/* count digits, white space, others */
main()
{
int c, i, nwhite, nother;
int ndigit[10];
nwhite = nother = 0;
for (i = 0; i < 10; ++i)
ndigit[i] = 0;
while ((c = getchar()) != EOF)
if (c >= '0' && c <= '9')
++ndigit[c-'0'];
else if (c == ' ' || c == '\n' || c == '\t')
++nwhite;
else
++nother;
printf("digits = ");
for (i = 0; i < 10; ++i)
printf(" %d", ndigit[i]);
printf(", white space = %d, other = %d\n",
nwhite, nother);
}
The line I'm confused about is this one:
++ndigit[c-'0'];
The book says that the numeric value of the digit is c - '0' and I'm confused as to why that is. Thanks for the help!
Edit 1: So why doesn't just removing the single quotes from if (c >= '0' && c <= '9') and removing the '0' from ++ndigit[c-'0']; work? Is that because even when integers are read with getchar int c contains their ASCII representation and not an actual integer, correct?