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 cmaxo for How do I convert a long to a string in C++?

$
0
0

The way I typically do it is with sprintf. So for a long you could do the following assuming that you are on a 32 bit architecture:

char buf[5] = {0}; // one extra byte for null    sprintf(buf, "%l", var_for_long);

Viewing all articles
Browse latest Browse all 13

Trending Articles



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