itoa() is a really handy function to convert a number to a string. Linux does not seem to have itoa(), is there an equivalent function or do I have to use sprintf(str, "%d", num) ?
|
|
EDIT: Sorry, I should have remembered that this machine is decidedly non-standard, having plugged in various non-standard As Here's the old (edited) answerYou are correct in stating that the default
Of course you already know this, because you wanted to use Example
Output:
Hope this helps! |
||||||||
|
|
|
If you are calling it a lot, the advice of "just use snprintf" can be annoying. So here's what you probably want:
|
||||
|
|
|
I have used _itoa(...) on RedHat 6 and GCC compiler. It works. |
||
|
|
|
|
[off topic] based on your description, a free warning: choose snprintf instead of sprintf ... |
||
|
|
|
|
Write your own; it's non-standard. |
||
|
|
|
|
As Matt J wrote, there is an itoa, but it's not standard. Your code will be more portable if you use snprintf. |
||
|
|
