atol() - C語言庫函式


C庫函式long int atol(const char *str) 轉換的字串引數str一個長整型(型別為long int)。

宣告

以下是宣告 atol() 函式.

long int atol(const char *str)

引數

  • str -- 這是一個字串,它包含一個整數表示。

返回值

這個函式返回轉換後的整數倍,作為一個長整型。如果沒有有效的轉換可以執行,它返回零。

例子

下面的例子顯示 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
", str, val);

   strcpy(str, "tw511.com");
   val = atol(str);
   printf("String value = %s, Long value = %ld
", str, val);

   return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

String value = 98993489, Long value = 98993489
String value = tw511.com, Long value = 0