Quantcast
Channel: How do I convert a long to a string in C++? - Stack Overflow
Viewing all articles
Browse latest Browse all 13

Answer by Skurmedel for How do I convert a long to a string in C++?

$
0
0

You could use stringstream.

#include <sstream>// ...std::string number;std::stringstream strstream;strstream << 1L;strstream >> number;

There is usually some proprietary C functions in the standard library for your compiler that does it too. I prefer the more "portable" variants though.

The C way to do it would be with sprintf, but that is not very secure. In some libraries there is new versions like sprintf_s which protects against buffer overruns.


Viewing all articles
Browse latest Browse all 13

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>