Posted by haifeng on 2022-06-25 12:06:58 last update 2022-06-25 12:53:00 | Edit | Answers (0)
在非标准 C 库中有一个函数 itoa, 可以将各种进制的整数转换为C风格的字符串.
函数原型为
char * itoa ( int value, char * str, int base );
字符串转为长整型
long int atol ( const char * str );