구글 신에게 물어보니 itoa()는 표준이 아니라는 말이 있더군요.
윈도우는 이 함수를 지원해주는데...g++은 지원을 안해주는지
에러가 납니다.
itoa()를 대신할 수 있는 함수가 어떤 것이 있는지요....
<참고> itoa()는 정수를 문자로바꾸어주는 것입니다.
atoi()와는 반대..
sprintf()를 쓰세요.
char buffer[100]; int i; sprintf(buffer, "%d", i);
c++ 이라면 boost::lexical_cast<std::string>() 을 사용하세요.
using boost; using std; string s = "page#" + lexical_cast<string> (123);
----------------------------------------http://moim.athttp://mkhq.co.kr
이건 C++이 아니라 C# 코드 같은데요.
Written By the Black Knight of Destruction
syntax가 조금 틀렸군요. :( C++ 맞습니다.
#include<boost/lexical_cast.hpp> #include<iostream> using namespace std; using namespace boost; int main() { string s = "page#" + lexical_cast<string> (123); cout << s << endl; }
sprintf()를 쓰세요.char buffer[100]; int i; sprintf(buffer, "%d", i);
sprintf 보다는 안전한 _snprintf 를 쓰시는 버릇을 들이면 좋을 듯 합니다. :D
_snprintf(buffer, sizeof(buffer), "%d", i);
----------------------------------------------------------------------- GPL 오픈소스 윈도우용 이미지 뷰어 ZViewer - http://zviewer.wimy.com 블로그 : http://blog.wimy.com
doldori wrote:sprintf()를 쓰세요.char buffer[100]; int i; sprintf(buffer, "%d", i); sprintf 보다는 안전한 _snprintf 를 쓰시는 버릇을 들이면 좋을 듯 합니다. :D _snprintf(buffer, sizeof(buffer), "%d", i);
ps. boost::lexical_cast 이거 재미있는 함수로군요.
ISO C (ISO/IEC 9899:1999) 표준 함수, snprintf()를 쓰시면 됩니다.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html Korean Ver: http://cinsk.github.io/cfaqs/
덧붙여.. info를 생활화 합시다. :wink:
GNU C Library Reference $ info libc
$ info libc
GNU C Library Reference (Function Index) $ info libc "function index"
$ info libc "function index"
텍스트 포맷에 대한 자세한 정보
<code>
<blockcode>
<apache>
<applescript>
<autoconf>
<awk>
<bash>
<c>
<cpp>
<css>
<diff>
<drupal5>
<drupal6>
<gdb>
<html>
<html5>
<java>
<javascript>
<ldif>
<lua>
<make>
<mysql>
<perl>
<perl6>
<php>
<pgsql>
<proftpd>
<python>
<reg>
<spec>
<ruby>
<foo>
[foo]
sprintf()를 쓰세요.[code:1]char buffer[
sprintf()를 쓰세요.
c++ 이라면 boost::lexical_cast<std::stri
c++ 이라면 boost::lexical_cast<std::string>() 을 사용하세요.
----------------------------------------
http://moim.at
http://mkhq.co.kr
[code:1]using boost;using std;stri
이건 C++이 아니라 C# 코드 같은데요.
Written By the Black Knight of Destruction
syntax가 조금 틀렸군요. :( C++ 맞습니다.[code:1
syntax가 조금 틀렸군요. :( C++ 맞습니다.
----------------------------------------
http://moim.at
http://mkhq.co.kr
[quote="doldori"]sprintf()를 쓰세요.[code:
sprintf 보다는 안전한 _snprintf 를 쓰시는 버릇을 들이면 좋을 듯 합니다. :D
-----------------------------------------------------------------------
GPL 오픈소스 윈도우용 이미지 뷰어 ZViewer - http://zviewer.wimy.com
블로그 : http://blog.wimy.com
[quote="zelon"][quote="doldori"]sprintf(
안전하기는 하지만 OP께서는 표준 함수를 찾는다고 하셔서요. ^^;
ps. boost::lexical_cast 이거 재미있는 함수로군요.
ISO C (ISO/IEC 9899:1999) 표준 함수, snprint
ISO C (ISO/IEC 9899:1999) 표준 함수, snprintf()를 쓰시면 됩니다.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://cinsk.github.io/cfaqs/
덧붙여.. info를 생활화 합시다. :wink: GNU C L
덧붙여.. info를 생활화 합시다. :wink:
GNU C Library Reference
$ info libc
GNU C Library Reference (Function Index)
$ info libc "function index"
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://cinsk.github.io/cfaqs/
댓글 달기