Programmieren - alles kontrollieren 4.936 Themen, 20.625 Beiträge

ANSI C: umkehrfunktion von "atoi"

the brain / 3 Antworten / Flachansicht Nickles

hi leude!
ich brauch die umkehrfunktion von atoi!
also aus einer integer-zahl einen zeichenvektor machen.
wie heisst denn das teil? itoa leider nicht :)

mfg the brain

bei Antwort benachrichtigen
Was auf die Fresse? the brain „ANSI C: umkehrfunktion von "atoi"“
Optionen

>itoa leider nicht

wohl!

char* _itoa( int value, char *string, int radix );
char* _i64toa( __int64 value, char *string, int radix );
char* _ui64toa( unsigned _int64 value, char *string, int radix );
wchar_t* _itow( int value, wchar_t *string, int radix );
wchar_t* _i64tow( __int64 value, wchar_t *string, int radix );
wchar_t* _ui64tow( unsigned __int64 value, wchar_t *string, int radix );

Remarks:
The _itoa, _i64toa, and _ui64toa function convert the digits of the given value argument to a null-terminated character string and stores the result (up to 33 bytes) in string. If radix equals 10 and value is negative, the first character of the stored string is the minus sign ( – ). _itow, _i64tow, and _ui64tow are wide-character versions of _itoa, _i64toa, and _ui64toa respectively.



bei Antwort benachrichtigen