sness
blog of sness
Friday, November 05, 2010
How do you add an int to a string in C ? - Stack Overflow
How do you add an int to a string in C ? - Stack Overflow
: "#include
std::ostringstream oss;
oss << text << i;
std::cout << oss.str();"
Newer Post
Older Post
Home