itoa() 関数は、C 言語で int データ型を string データ型に変換するために使用されます。
構文 -
char * itoa ( int value, char * str, int base );
バッファー パスに配置する文字列は、出力を保持するのに十分な大きさでなければなりません。基数の値は OCTAL(0 ~ 7)、DECIMAL(0 ~ 9)、または HEX(0 ~ 9、a ~ f) のいずれかになります。基数が DECIMAL の場合、itoa() は -
(void) sprintf(buffer, '%d', n);
ここで、バッファは文字列を返します。
基数が 8 進数の場合、itoa() は整数 'n' を符号なし 8 進定数にフォーマットします。
基数が 16 進数の場合、itoa() は整数 'n' を符号なし 16 進定数にフォーマットします。
16 進値には小文字のアルファベットが含まれます。
戻り値 -
文字列ポインタが返されます。無効な基数引数を渡すと、関数は NULL を返します。
標準に準拠した代替手段 -
- sprintf(str,'%d',value) - 10 進数への変換用。
- sprintf(str,'%x',value) - 16 進数への変換用。
- sprintf(str,'%o',value) - 8 進数への変換用。
アルゴリズム:
Step 1: Take a number as argument Step 2: Create an empty string buffer to store result Step 3: Use sprintf() to convert number to string Step 4: End
コード -
#include #include #include char* itoa(int num, char* buffer, int base) { int current = 0; if (num == 0) { buffer[current++] = '0'; buffer[current] = ' '; return buffer; } int num_digits = 0; if (num <0) { if (base="=" 10) num_digits ++; buffer[current]="-" ; current num *="-1;" } else return null; +="(int)floor(log(num)" log(base)) 1; while (current < num_digits) int base_val="(int)" pow(base, num_digits-1-current); num_val="num" base_val; char value="num_val" '0'; -="base_val" num_val; buffer; main() a="123456;" buffer[256]; (itoa(a, buffer, !="NULL)" printf('input="%d," base="%d," buffer="%s '," a, 10, buffer); b="-2310;" (itoa(b, b, c="10;" (itoa(c, 2) c, 2, 0; pre> <p> <strong>Output</strong> </p> <pre> Input = 123456, base = 10, Buffer = 123456 Input = -2310, base = 10, Buffer = -2310 Input = 10, base = 2, Buffer = 1010 </pre> <img src="//techcodeview.com/img/c-tutorial/58/itoa-function-c.webp" alt="itoa Function in C"> <h4>Note: But we have to keep in mind that while we are compiling with gcc, we have to use the '-lm' flag to include the math library.</h4> <p> <strong>gcc -o test.out test.c -lm</strong> </p> <hr></0)>
注: ただし、gcc でコンパイルしている間、数学ライブラリをインクルードするには「-lm」フラグを使用する必要があることに留意する必要があります。
gcc -o test.out test.c -lm
0)>