atol 头文件
清泛原创
#include <stdlib.h>
函数名: atol
功 能: 把字符串转换成长整型数
用 法: long atol(const char *nptr);
实例:
函数名: atol
功 能: 把字符串转换成长整型数
用 法: long atol(const char *nptr);
实例:
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
long l;
char *lstr = "98765432";
l = atol(lstr);
printf("string = %s integer = %ld\n", lstr, l);
return(0);
}
上一篇:C/C++中退出线程的几种方法
下一篇:Linux编程中各种头文件