Itoa - overview

Nasza ocena:

3
Wyświetleń: 602
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Itoa  - overview - strona 1

Fragment notatki:

Itoa A conversion from an i nteger to A SCII string /* itoa: convert n to characters in s */ void itoa(int n, char s[]) { int i, sign; if ((sign = (n 0); /* delete it */ if (sign) s[i++] = '-'; /* n was negative */ s[i] = '\0'; /* mark the end of the string */ reverse(s); } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz