atoi函數的用法是將一個字符串轉換成整數。
它的函數原型為: int atoi(const char *str);
參數說明:
函數返回值:轉換后的整數值。
使用示例:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[10] = "12345";
int num = atoi(str);
printf("%d\n", num);
return 0;
}
輸出結果:
12345
注意事項: