Implement the standard I/O function itoa(). The itoa() function constructs a string representation of an integer. The parameters are:
value: the integer to be converted to string representation.
string: points to the buffer that is to hold resulting string.
radix: is the base of the number; must be in the range 2 - 36.
char *itoa(int value, char *string, int radix)
{
{
Leave a comment
If you are including code in your comment, place it within a <div class='code'></div> tag for better formatting.
No Comments so far
Leave a comment