itoa함수에 대한 질문입니다.

assa의 이미지

구글 신에게 물어보니 itoa()는 표준이 아니라는 말이 있더군요.

윈도우는 이 함수를 지원해주는데...g++은 지원을 안해주는지

에러가 납니다.

itoa()를 대신할 수 있는 함수가 어떤 것이 있는지요....

<참고>
itoa()는 정수를 문자로바꾸어주는 것입니다.

atoi()와는 반대..

doldori의 이미지

sprintf()를 쓰세요.

char buffer[100];
int i;
sprintf(buffer, "%d", i);
happyjun의 이미지

c++ 이라면 boost::lexical_cast<std::string>() 을 사용하세요.

using boost;
using std;

string s = "page#" + lexical_cast<string> (123);

----------------------------------------
http://moim.at
http://mkhq.co.kr

Necromancer의 이미지

using boost;
using std;

string s = "page#" + lexical_cast<string> (123);

이건 C++이 아니라 C# 코드 같은데요.

Written By the Black Knight of Destruction

happyjun의 이미지

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;
}

----------------------------------------
http://moim.at
http://mkhq.co.kr

zelon의 이미지

doldori wrote:
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의 이미지

zelon wrote:
doldori wrote:
sprintf()를 쓰세요.
char buffer[100];
int i;
sprintf(buffer, "%d", i);

sprintf 보다는 안전한 _snprintf 를 쓰시는 버릇을 들이면 좋을 듯 합니다. :D

_snprintf(buffer, sizeof(buffer), "%d", i);

안전하기는 하지만 OP께서는 표준 함수를 찾는다고 하셔서요. ^^;

ps. boost::lexical_cast 이거 재미있는 함수로군요.

cinsk의 이미지

ISO C (ISO/IEC 9899:1999) 표준 함수, snprintf()를 쓰시면 됩니다.

cinsk의 이미지

덧붙여.. info를 생활화 합시다. :wink:

GNU C Library Reference
$ info libc

GNU C Library Reference (Function Index)
$ info libc "function index"

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <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].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <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].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <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].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <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].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.