Is there a way to convert a character to an integer in C?
for example, '5' -> 5
thanks.
|
1
|
Is there a way to convert a character to an integer in C? for example, '5' -> 5 thanks. |
||
|
|
|
|
As per other replies, this is fine:
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:
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. |
||||
|
|
|
Subtract '0' like this:
The C Standard guarantees each digit in the range |
||||||||||
|
|
|
If, by some crazy coincidence, you want to convert a string of characters to an integer, you can do that too!
Converts |
||||||
|
|
|
|
||
|
|
|
|
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:
** don't forget to check the status (which should be 1 if it worked in the above case). Paul. |
||
|
|
|
|
|
|||
|
|
|
|
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. |
||
|