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

atoi() - C語言庫函數

C庫函數 int atoi(const char *str) 轉換為字符串參數str為整數(int型)。 

聲明

以下是atoi() 函數的聲明。

int atoi(const char *str)

參數

  • str -- 這是一個整數的字符串表示形式。

返回值

這個函數返回一個int值轉換的整數。如果冇有有效的轉換可以執行,它返回零。

例子

下麵的例子顯示atoi() 函數的用法。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main()
{
   int val;
   char str[20];
   
   strcpy(str, "98993489");
   val = atoi(str);
   printf("String value = %s, Int value = %d
", str, val);

   strcpy(str, "gitbook.net");
   val = atoi(str);
   printf("String value = %s, Int value = %d
", str, val);

   return(0);
}

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

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