Funkcja itoa () służy do konwersji typu danych int na typ danych string w języku C.
SKŁADNIA -
char * itoa ( int value, char * str, int base );
Ciąg znaków, który umieszczamy w przebiegu bufora, musi być wystarczająco duży, aby pomieścić dane wyjściowe. Ponieważ wartości podstawy mogą być ósemkowe (0 - 7), dziesiętne (0 - 9) lub szesnastkowe (0 - 9, a - f). Gdy podstawa jest DECIMAL, itoa() tworzy -
(void) sprintf(bufor, '%d', n);
Tutaj bufor zwraca ciąg znaków.
Gdy podstawa jest ósemkowa, itoa() formatuje liczbę całkowitą „n” do stałej ósemkowej bez znaku.
A gdy podstawą jest HEX, itoa() formatuje liczbę całkowitą „n” na stałą szesnastkową bez znaku.
Wartość szesnastkowa będzie zawierać małe litery.
Wartość zwracana -
Wskaźnik ciągu zostanie zwrócony. Kiedy przekażemy niepoprawny argument podstawy, funkcja zwróci NULL.
Alternatywa zgodna ze standardami -
- sprintf(str,'%d',value) - Do konwersji na system dziesiętny.
- sprintf(str,'%x',value) - Do konwersji na system szesnastkowy.
- sprintf(str,'%o',value) - Do konwersji na bazę ósemkową.
Algorytm:
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
KOD -
#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)>
Uwaga: Musimy jednak pamiętać, że podczas kompilacji za pomocą gcc musimy użyć flagi „-lm”, aby uwzględnić bibliotekę matematyczną.
gcc -o test.out test.c -lm
0)>