c++中怎么把字符串转换为整数
时间: 2023-05-12 20:06:45 浏览: 131
字符串相关笔试题 常考
5星 · 资源好评率100%
可以使用 atoi 函数将字符串转换为整数。例如:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "123";
int num = atoi(str);
printf("%d\n", num);
return 0;
}
```
输出结果为:
```
123
```
阅读全文