C或c++字符串转整数
时间: 2023-10-01 19:11:53 浏览: 83
字符串转化为整数
在C或C++中,可以使用`atoi()`函数将字符串转换为整数。`atoi()`函数的原型如下:
```c++
int atoi(const char* str);
```
其中`str`是指向要转换的字符串的指针。`atoi()`函数会将字符串转换为整数并返回结果。
示例代码如下:
```c++
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char str[] = "12345";
int num = atoi(str);
cout << num << endl;
return 0;
}
```
输出:
```
12345
```
阅读全文