A função itoa () é usada para converter o tipo de dados int em tipo de dados string na linguagem C.
Sintaxe -
char * itoa ( int value, char * str, int base );
A string que colocamos na passagem do buffer deve ser grande o suficiente para conter a saída. Como os valores de base podem ser OCTAL(0 - 7), DECIMAL(0 - 9) ou HEX(0 - 9, a - f). Quando a raiz é DECIMAL, itoa() produz -
(void) sprintf(buffer, '%d', n);
Aqui, buffer retorna uma sequência de caracteres.
Quando a raiz é OCTAL, itoa() formata o inteiro 'n' em uma constante octal sem sinal.
E quando a raiz é HEX, itoa() formata o inteiro 'n' em uma constante hexadecimal sem sinal.
O valor hexadecimal incluirá letras minúsculas.
Valor de retorno -
O ponteiro da string será retornado. Quando passamos um argumento radix inválido, a função retornará NULL.
Uma alternativa compatível com o padrão -
- sprintf(str,'%d',value) - Para conversão para base decimal.
- sprintf(str,'%x',value) - Para conversão para base hexadecimal.
- sprintf(str,'%o',value) - Para conversão para base octal.
Algoritmo:
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
CÓDIGO -
#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)>
Nota: Mas temos que ter em mente que enquanto estamos compilando com o gcc, temos que usar o sinalizador '-lm' para incluir a biblioteca matemática.
gcc -o teste.out teste.c -lm
0)>