chandubaba Messages 39 Reaction score 0 Thread starter Oct 25, 2006 #1 how to convert an input of integer(more than 1 character) type into output which is in string in c++
Hurkyl Staff Emeritus Science Advisor Gold Member Messages 14,922 Reaction score 28 Oct 25, 2006 #2 (I'm assuming you've acquired an int value that you wish to convert into a char* or a std::string) Use std::stringstream. Or do it the C-way with sprintf. Or, roll your own method.
(I'm assuming you've acquired an int value that you wish to convert into a char* or a std::string) Use std::stringstream. Or do it the C-way with sprintf. Or, roll your own method.