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?

link|improve this question
feedback

4 Answers

up vote 6 down vote accepted

To show how the arithmetic works, I'll assume your compiler uses ASCII. In ASCII, the values of the characters 0 to 9 are contiguous, starting on the number 48 for the character 0 and ending on the number 57 for the character 9.

So if c contains the character 7, which is is represented by the number 55, then by subtracting 48 (which is what represents the character 0) you'll get the desired number, which is 7. You can see how this works for the rest of the digits:

Digit = (ASCII code of character) - (ASCII code of "0")
Where 48 <= ASCII code of character <= 57

 Character | ASCII code | ASCII code of "0" | Digit
-----------+------------+-------------------+-------
    "0"    |     48     |        48         |   0
    "1"    |     49     |        48         |   1
    "2"    |     50     |        48         |   2
    "3"    |     51     |        48         |   3
    "4"    |     52     |        48         |   4
    "5"    |     53     |        48         |   5
    "6"    |     54     |        48         |   6
    "7"    |     55     |        48         |   7
    "8"    |     56     |        48         |   8
    "9"    |     57     |        48         |   9

This is essentially how the expression c-'0' extracts the correct digit. By using the constant '0' instead of 48, this scheme will work for any character encoding system as long as the digits in that particular encoding system are contiguous and increase as their respective codes increase, which is the case for ASCII.

Of course, you must check that the code actually represents a number, or you will get nonsensical "digits" like -3 or 12 for non-number characters.

link|improve this answer
That makes sense. Thanks! – Zeebo Nov 28 '10 at 9:32
Note that the C standard requires digits to be consecutive in the character set. Note also that no such requirement exists for letters. – Chris Lutz Nov 28 '10 at 9:44
feedback

The simple answer is that the character literal '0' is implicitly cast to its code. In ASCII, the digits are encoded as 48 (30 hex) for 0 to 57 (39 hex). Subtract the '0' from the actual code and you get the digit value, from 0 to 9 inclusive.

EDIT should be "treated as it's numeric code" as there is no cast involved.

In some character sets this may not work (though I've not found a real-world one yet). A common scare-case for character code tricks is EBCDIC, but I believe this does work with digits in EBCDIC - the digit codes are hex F0 to F9 in that case. Alphabetic order tricks may break, though, as the letters aren't in contiguous blocks.

link|improve this answer
FYI the ISO C standard guarantees that digits will be contiguous. Letters need not be, though they always are in practice since everybody uses ASCII now. – John Kugelman Nov 28 '10 at 8:43
@John - OK - though pedantically, always something that includes ASCII as a subset. – Steve314 Nov 28 '10 at 9:14
feedback

What has been written in Edit 1 displays us the ASCII value of the number contained in variable C.

This is very different from its numeric value. As has already been pointed out. The ASCII counting starts from the ASCII value of 0 which is 48.

thus if c meant to store numeric value 5 it would have stored 48 + 5 = 53. Now if we use c after removing the single quotes we get the value 53 . However doing c - '0' gives us 5. This is the difference as already pointed out by In silico.

:)

link|improve this answer
feedback

It converts the ascii character in the variable c to the actual value represented. The conversion is done by subtracting the ascii value of the character "0" from the value in the variable "c".

I wouldn't recommend this method because there's no real guarantee that your character set represents the values for '0' .. '9' continuosly. Although admittedly I haven't encountered any charater set where it isn't.

Also if you try this magic on similar problems like converting upper case to lower case it will almost certainly break at some point if you want to support any other languages then English.

So, no I wouldn't recommend this method, but use the appropriate libraries.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown