C语言将字符串转化成整形
时间: 2023-09-06 16:09:43 浏览: 105
atoi--itoa-function-prototype.rar_itoa_prototype
可以使用C语言标准库中的`atoi`函数将字符串转换为整数。例如:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "123";
int num = atoi(str);
printf("%d\n", num);
return 0;
}
```
输出结果为:
```
123
```
阅读全文