描述
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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。