unsigned

suggest change

A type specifier that requests the unsigned version of an integer type.

Example:

char invert_case_table[256] = { ..., 'a', 'b', 'c', ..., 'A', 'B', 'C', ... };
char invert_case(char c) {
    unsigned char index = c;
    return invert_case_table[index];
    // note: returning invert_case_table[c] directly does the
    // wrong thing on implementations where char is a signed type
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents