logo

itoa Funzione in C

La funzione itoa () viene utilizzata per convertire il tipo di dati int nel tipo di dati string nel linguaggio C.

SINTASSI -

 char * itoa ( int value, char * str, int base ); 

La stringa che inseriamo nel passaggio del buffer deve essere abbastanza grande da contenere l'output. Poiché i valori radice possono essere OCTAL(0 - 7), DECIMAL(0 - 9) o HEX(0 - 9, a - f). Quando la radice è DECIMALE, itoa() produce -

(void) sprintf(buffer, '%d', n);

Qui, il buffer restituisce la stringa di caratteri.

Quando la radice è OCTAL, itoa() formatta l'intero 'n' in una costante ottale senza segno.

E quando la radice è HEX, itoa() formatta l'intero 'n' in una costante esadecimale senza segno.

Il valore esadecimale includerà gli alfabeti minuscoli.

Valore di ritorno -

Verrà restituito il puntatore alla stringa. Quando passiamo un argomento radice non valido, la funzione restituirà NULL.

Un'alternativa conforme agli standard -

  • sprintf(str,'%d',value) - Per la conversione in base decimale.
  • sprintf(str,'%x',value) - Per la conversione in base esadecimale.
  • sprintf(str,'%o',value) - Per la conversione in base ottale.

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 

CODICE -

 #include #include #include char* itoa(int num, char* buffer, int base) { int current = 0; if (num == 0) { buffer[current++] = &apos;0&apos;; buffer[current] = &apos;&apos;; 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
&apos;," 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 &apos;-lm&apos; flag to include the math library.</h4> <p> <strong>gcc -o test.out test.c -lm</strong> </p> <hr></0)>
itoa Funzione in C

Nota: dobbiamo però tenere presente che mentre compiliamo con gcc, dobbiamo usare il flag '-lm' per includere la libreria matematica.

gcc -o test.out test.c -lm