vote up 4 vote down star
1

Is there a way to convert a character to an integer in C?

for example, '5' -> 5

thanks.

flag

7 Answers

vote up 10 vote down check

As per other replies, this is fine:

char c = '5';
int x = c - '0';

Also, for error checking, you may wish to check isdigit(c) is true first. Note that you cannot completely portably do the same for letters, for example:

char c = 'b';
int x = c - 'a'; // x is now not necessarily 1

The standard guarantees that the char values for the digits '0' to '9' are contiguous, but makes no guarantees for other characters like letters of the alphabet.

link|flag
Will this work with EBCDIC or other non-ASCII encodings? – Paul Tomblin May 15 at 13:22
@Paul Tomblin: Yes for digits not letters, because, as I said in the answer, the standard guarantees '0' to '9' are contiguous but does not make such guarantees for other characters such as 'a' to 'z'. – Chris Young May 18 at 4:46
vote up 6 vote down

Subtract '0' like this:

int i = c - '0';

The C Standard guarantees each digit in the range '0'..'9' is one greater than its previous digit (in section 5.2.1/3 of the C99 draft). The same counts for C++.

link|flag
This answer would be better if you mentioned that a char is /already/ effectively an integer, albiet of implementation defined sign (ie, might be signed or unsigned), and is CHAR_BITS long. – Arafangion Mar 10 at 3:03
i wasn't sure knowing that really helps him. but Chris made a good point with a..z being not contiguous necessarily. i should have mentioned that instead. now he's won the race :) – Johannes Schaub - litb Mar 10 at 3:09
Yours is better because you've qualified your answer, though - Chris could very well have just made his stuff up. :) – Arafangion Mar 10 at 3:25
thanks for the appreciation. i admit i wasn't sure about the state for C. so i looked up and 'cause i already was at it i pasted the reference into the answer :) – Johannes Schaub - litb Mar 10 at 3:28
And that, sir, is why you've got a couple more points than me. :) – Arafangion Mar 10 at 3:51
show 2 more comments
vote up 4 vote down

If, by some crazy coincidence, you want to convert a string of characters to an integer, you can do that too!

char *num = "1024";
int val = atoi(num); // atoi = Ascii TO Int

val is now 1024. Apparently atoi() is fine, and what I said about it earlier only applies to me (on OS X (maybe (insert Lisp joke here))). I have heard it is a macro that maps roughly to the next example, which uses strtol(), a more general-purpose function, to do the converstion instead:

char *num = "1024";
int val = (int)strtol(num, (char **)NULL, 10); // strtol = STRing TO Long

strtol() works like this:

long strtol(const char *str, char **endptr, int base);

Converts *str to a long, treating it as if it were a base base number. If **endptr isn't null, it holds the first non-digit character strtol() found (but who cares about that).

link|flag
There are no thread issues with atoi (it has no static data) and it is not deprecated. In fact it is functionally equivalent to: #define atoi(x) (int)(strtol((x), NULL, 10) – Evan Teran Mar 10 at 14:43
Well damn. My manpages are old. – Chris Lutz Mar 11 at 4:37
The issue with atoi is that it uses 0 as a "can't find a number here" value, so atoi("0") and atoi("one") both return 0. If that doesn't work for what you're using it for, look for strtol() or sscanf(). – David Thornley Mar 11 at 20:39
vote up 1 vote down
char numeralChar = '4';
int numeral = (int) (numeralChar - '0');
link|flag
vote up 0 vote down

If it's just a single character 0-9 in ASCII, then subtracting the the value of the ASCII zero character from ASCII value should work fine.

If you want to convert larger numbers then the following will do:

char *string = "24";

int value;

int assigned = sscanf(string, "%d", &value);

** don't forget to check the status (which should be 1 if it worked in the above case).

Paul.

link|flag
vote up -1 vote down
char chVal = '5';
char chIndex;

if ((chVal >= '0') && (chVal <= '9')) {

    chIndex = chVal - '0';
}
else 
if ((chVal >= 'a') && (chVal <= 'z')) {

    chIndex = chVal - 'a';
}
else 
if ((chVal >= 'A') && (chVal <= 'Z')) {

    chIndex = chVal - 'A';
}
else {
    chIndex = -1; // Error value !!!
}
link|flag
vote up -3 vote down

You would cast it to an int (or float or double or what ever else you want to do with it) and store it in anoter variable.

link|flag
Maybe I shouldn't have answered this one... – SeanJA Sep 15 at 0:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.