在C语言中,可以使用atoi()
函数将字符串转换为整数。
atoi()
函数的声明如下:
int atoi(const char *str);
其中,str
是要转换的字符串,函数返回转换后的整数。
示例代码:
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("%d\n", num);
return 0;
}
输出:
12345
需要注意的是,如果字符串不能转换为整数,atoi()
函数将返回0。此外,如果字符串超出了整数的表示范围,结果是不确定的。如果需要对转换过程进行更详细的控制,可以使用strtol()
函数。