c语言中将字符串转换为整型
时间: 2023-06-21 13:10:46 浏览: 116
C字符串与整型之间的转换
4星 · 用户满意度95%
在C语言中,可以使用`atoi()`函数将字符串转换为整型。
函数原型如下:
```c
int atoi(const char *str);
```
其中,`str`为需要转换的字符串,函数返回值为转换后的整型数。
示例代码:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "1234";
int num = atoi(str);
printf("The integer is: %d\n", num);
return 0;
}
```
输出结果为:
```
The integer is: 1234
```
阅读全文