编写c语言函数,将字符串转换为数字
时间: 2024-05-16 17:16:50 浏览: 97
c语言字符串与数字转换函数
5星 · 资源好评率100%
可以使用C语言标准库中的atoi()函数将字符串转换为数字。以下是示例代码:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("The converted number is: %d\n", num);
return 0;
}
```
输出结果为:
```
The converted number is: 12345
```
在上面的示例中,我们将字符串“12345”转换为整数,并将结果存储在变量num中。使用printf()函数打印出转换后的数字。
阅读全文