字符串转化为十进制整数C语言
时间: 2024-06-16 15:07:49 浏览: 93
C语言实现字符串转十进制算法
在C语言中,可以使用标准库函数`atoi`将转化为十进制整数。`atoi`函数的原型如下:
```c
int atoi(const char *str);
```
其中,`str`是要转换的字符串。`atoi`函数会将字符串中的数字部分转化为对应的整数,并返回转换后的结果。
以下是一个示例代码:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("转换后的整数为:%d\n", num);
return 0;
}
```
运行以上代码,输出结果为:
```
转换后的整数为:12345
```
阅读全文