Possible Duplicates:
How to convert a single char into an int
Character to integer in C
Can any body tell me how to convert a char to int?
char c[]={'1',':','3'};
int i=int(c[0]);
printf("%d",i);
When I try this it gives 49.
|
|
Can any body tell me how to convert a
When I try this it gives 49.
|
|||
|
|
closed as exact duplicate by Jonathan Leffler, Eli Courtwright, Mehrdad Afshari, dmckee, Shog9 May 20 at 1:58 |
|
|
In the old days, when we could assume that most computers used ASCII, we would just do
Edit: Although it looks hackish, evidently it is guaranteed by the standard to work. Thanks @Earwicker. |
||||||||||||
|
|
|
so your code would be:
|
||||
|
|
|
The standard function atoi() will likely do what you want. |
||||||||||||
|