C 速查手冊

11.4.2 atoi()

stdlib.h函數 (function) atoi() 接受字串 (string) 當作參數 (parameter) ,將字串中的數字轉換為 int 型態的整數。

以下程式示範函數 atoi() 對不同字串的轉換結果

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

int main(void)
{
    printf("%d\n", atoi("54321"));
    printf("%d\n", atoi("54.321"));
    printf("%d\n", atoi("$54321"));
    printf("%d\n", atoi("$54.321"));
    printf("%d\n", atoi("54.321%"));
    printf("%d\n", atoi("5.4321+33=?"));
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://kaiching.org/
    檔名:catoi.c
    功能:示範 stdlib.h 中函數 atoi() 的使用
    作者:張凱慶 */

編譯後執行,結果如下

$ gcc catoi.c
$ a.out
54321
54
0
0
54
5
$

上一頁 11.4.1 atof()
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.4.3 strtod()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁