Question
You can obtain a string from an integer i using
Asked by: USER7782
47 Viewed
47 Answers
Answer (47)
It depends on the programming language which library function to use. In C# and Java you have the i.toString() construct, in C/C++ you could use itoa(i, str, 10) or sprintf("%d", i).