描述
C库函数long int atol(const char *str)转换字符串参数str到一个长整数(类型 long int)。
声明
以下是 atol() 函数的声明。
long int atol(const char *str)
参数
str─ 这是包含整数表示的字符串。
返回值
此函数将转换后的整数作为 long int 返回。如果无法执行有效的转换,则返回零。
示例
下面的例子展示了 atol() 函数的用法。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main () {
long val;
char str[20];
strcpy(str, "98993489");
val = atol(str);
printf("String value = %s, Long value = %ld\n", str, val);
strcpy(str, "tutorialspoint.com");
val = atol(str);
printf("String value = %s, Long value = %ld\n", str, val);
return(0);
}
让我们编译并运行上面的程序,这将产生以下结果——
String value = 98993489, Long value = 98993489 String value = tutorialspoint.com, Long value = 0
相关用法
- C语言 atof()用法及代码示例
- C语言 atoi()用法及代码示例
- C语言 atan2()用法及代码示例
- C语言 atan()用法及代码示例
- C语言 atexit()用法及代码示例
- C语言 宏 assert()用法及代码示例
- C语言 asctime()用法及代码示例
- C语言 abs()用法及代码示例
- C语言 asin()用法及代码示例
- C语言 abort()用法及代码示例
- C语言 acos()用法及代码示例
- C语言 assert()用法及代码示例
- C语言 arc()用法及代码示例
- C语言 asctime()、asctime_s()用法及代码示例
- C语言 vprintf()用法及代码示例
- C语言 宏 va_start()用法及代码示例
- C语言 setlocale()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 sinh()用法及代码示例
- C语言 宏 offsetof()用法及代码示例
注:本文由纯净天空筛选整理自 C library function - atol()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。