Login
CStdioFile - bad ptr (Visual C++)
612 просмотров
Перейти к просмотру всей ветки
scorpi_ скептик
in Antwort voxel3d 12.05.06 17:22
В ответ на:
char * ltoa ( long value, char * buffer, int radix );
Convert long integer value to string.
Converts a long integer value to a null-terminated string using the specified radix and stores the result in the given buffer. If radix is 10 and value is negative the string is preceded by the minus sign (-). With any other radix, value is always considered unsigned. buffer should be large enough to contain any possible value: (sizeof(long)*8+1) for radix=2.