I have a simple question
How to simply convert integer (getting values 0-8) to char, e.g. char[2] in C?
Thanks
|
I have a simple question How to simply convert integer (getting values 0-8) to char, e.g. char[2] in C? Thanks |
||||
Hope it will be helpful to you. |
|||
|
|
|
Use this. Beware of i's larger than 9, as these will require a char array with more than 2 elements to avoid a buffer overrun.
|
|||
|
|
|
You can't truly do it in "standard" C, because the size of an int and of a char aren't fixed. Let's say you are using a compiler under Windows or Linux on an intel PC...
But you probably meant "i want to stringify a number", so ignore this response :-) |
|||
|
|
|
If you want to convert an int which is in the range 0-9 to a char, you may usually write something like this:
Now, if you want a character string, just add a terminating '\0' char:
Note that:
|
|||||
|
char? Please give an example of input and corresponding output. – Oli Charlesworth Feb 19 '11 at 9:52