Converting int to string in c - Stack Overflow
Before I continue, I must warn you that itoa is NOT an ANSI function — it's not a standard C function. You should use sprintf to convert an int into a string. itoa takes three arguments. The first one is the integer to be converted. The second is a pointe...