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, "tw511.com");
   val = atoi(str);
   printf("String value = %s, Int value = %d
", str, val);

   return(0);
}

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

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