+ 6
Convert int to string ?
Looking for solo conpatible way of converting int to string. I'm using string library .tried to use NumberToString and to_string with no luck! any thoughts ?
2 Answers
+ 1
How you do this depends on which version of C++ and which compiler and libraries you're using.
It sounds like you may want to use sstream.
http://www.cplusplus.com/articles/D9j2Nwbp/
+ 5
Thank you . jobs done :)