将一个数字字符串转换为一个整数,用c语言
时间: 2024-01-18 21:45:00 浏览: 76
JavaScript将字符串转换为整数的方法
你可以使用C语言的标准库函数 `atoi` 来将一个数字字符串转换为一个整数。例如:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
char num_str[] = "12345";
int num = atoi(num_str);
printf("%d\n", num);
return 0;
}
```
输出结果为:
```
12345
```
阅读全文