跳转到内容

C++ 编程/代码/标准 C 库/函数/atol

来自维基教科书,开放的书籍,开放的世界
语法
#include <cstdlib>
long atol( const char *str );

atol() 函数将 str 转换为 long,然后返回该值。atol() 将从 str 中读取,直到找到任何不应出现在 long 中的字符。然后将截断后的结果值转换并返回。例如,

x = atol( "1024.0001" );

将导致 x 设置为 1024L。

相关主题
atof - atoi - strtod
(标准 C I/O) sprintf
华夏公益教科书