位置:首頁 > 高級語言 > C語言標準庫 > atol() - C語言庫函數

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, "gitbook.net");
   val = atol(str);
   printf("String value = %s, Long value = %ld
", str, val);

   return(0);
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

String value = 98993489, Long value = 98993489
String value = gitbook.net, Long value = 0