You can obtain a string from an integer i using

Question

Grade: Education Subject: computers-and_technology
You can obtain a string from an integer i using
Asked by:
47 Viewed 47 Answers

Answer (47)

Best Answer
(182)
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).