C庫函數(shù)long int atol(const char *str) 轉(zhuǎn)換的字符串參數(shù)str一個長整型(類型為long int)。
以下是聲明 atol() 函數(shù).
long int atol(const char *str)
str -- 這是一個字符串,它包含一個整數(shù)表示。
這個函數(shù)返回轉(zhuǎn)換后的整數(shù)倍,作為一個長整型。如果沒有有效的轉(zhuǎn)換可以執(zhí)行,它返回零。
下面的例子顯示 atol() 函數(shù)的用法。
#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 ", str, val); strcpy(str, "yiibai.com"); val = atol(str); printf("String value = %s, Long value = %ld ", str, val); return(0); }
讓我們編譯和運行上面的程序,這將產(chǎn)生以下結(jié)果:
String value = 98993489, Long value = 98993489 String value = yiibai.com, Long value = 0