Hello there!
How can I convert an INT value into a string?
I used the itoa function successfully in Windows:
itoa(the_int_number, the_string, 10);
It worked fine in Windows (DevC++) but Linux did not recognize this function.
Does anyone know another way of converting INT into char[n] in C that Linux could accept?
Thank you for any hints!
Marcos