atoi()
是C标准库中的一个函数,用于将字符串转换为整数。函数原型如下:
int atoi(const char *str);
参数 str
是一个指向要转换的字符串的指针。atoi()
函数会尝试将字符串中的数字部分转换为整数,并返回转换后的整数值。如果字符串中不仅包含数字,还包含其他非数字字符,atoi()
函数会尽可能地将数字部分解析为整数,并忽略后面的非数字字符。
例如:
#include <stdio.h>
#include <stdlib.h>
int main() {
const char *str = "12345";
int num = atoi(str);
printf("Converted number: %d\n", num);
return 0;
}