“Konwertuj int na ciąg C” Kod odpowiedzi

c int to string

int i = 69;
char str[256];

itoa(i,str,10); //Base 10

//str = "69"
GitanDesBois

Liczba całkowita do Stringc

int someInt = 368;
char str[12];
sprintf(str, "%d", someInt);
Distinct Dingo

Cel C Convert Int na ciąg

NSString* myNewString = [NSString stringWithFormat:@"%d", myInt];
Mobile Star

Odpowiedzi podobne do “Konwertuj int na ciąg C”

Pytania podobne do “Konwertuj int na ciąg C”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu