2010. 6. 22. 01:14 devel/etc
c++ int to string
#include <iostream>
#include <sstream>
using namespace std;
int main(){
int i = 5;
std::string s;
std::stringstream out;
out << i;
s = out.str();
cout << s;
return 0;
}
'devel > etc' 카테고리의 다른 글
64비트 멀티코어 OS 원리와 구조 (0) | 2011.12.10 |
---|---|
HTML STYLE COLOR (0) | 2011.09.08 |
Visual Studio 2005, 2008 에서 OPEN GL 사용하기 (0) | 2010.05.16 |
Makefile 쉬운 예제 (1) | 2009.10.17 |
윤드림훃의 주옥같은 글 (0) | 2009.10.17 |