C 標(biāo)準(zhǔn)庫 - <stdlib.h>
C 庫函數(shù) int atoi(const char *str) 把參數(shù) str 所指向的字符串轉(zhuǎn)換為一個整數(shù)(類型為 int 型)。
下面是 atoi() 函數(shù)的聲明。
int atoi(const char *str)
該函數(shù)返回轉(zhuǎn)換后的長整數(shù),如果沒有執(zhí)行有效的轉(zhuǎn)換,則返回零。
下面的示例演示了 atoi() 函數(shù)的用法。
#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, "(cainiaoplus.com)"); val = atoi(str); printf("字符串值 = %s, 整型值 = %d\n", str, val); return(0); }
讓我們編譯并運行上面的程序,這將產(chǎn)生以下結(jié)果:
字符串值 = 98993489, 整型值 = 98993489 字符串值 = (cainiaoplus.com), 整型值 = 0