C 庫函數 - atoi()

C 標準庫 - <stdlib.h> C 標準庫 - <stdlib.h>

描述

C 庫函數 int atoi(const char *str) 把參數 str 所指向的字符串轉換為一個整數(類型為 int 型)。

聲明

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

int atoi(const char *str)

參數

  • str -- 要轉換為整數的字符串。

返回值

該函數返回轉換后的長整數,如果沒有執行有效的轉換,則返回零。

實例

下面的實例演示了 atoi() 函數的用法。

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

int main()
{
   int val;
   char str[20];
   
   strcpy(str, "98993489");
   val = atoi(str);
   printf("字符串值 = %s, 整型值 = %d\n", str, val);

   strcpy(str, "w3cschool.cn");
   val = atoi(str);
   printf("字符串值 = %s, 整型值 = %d\n", str, val);

   return(0);
}

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

字符串值 = 98993489, 整型值 = 98993489
字符串值 = w3cschool.cn, 整型值 = 0

C 標準庫 - <stdlib.h> C 標準庫 - <stdlib.h>