源码实现 –> atoi函数实现 atoi函数实现 atoi()函数的功能是将一个字符串转换为一个整型数值。 例如“12345”,转换之后的数值为12345,“-0123”转换之后为-123。 #include <stdio … 继续阅读 源码实现 –> atoi函数实现