C语言中将字符串转换成数字
在C语言中,可以使用`atoi`函数将字符串转换为整数。该函数的原型为:
```c
int atoi(const char *str);
```
使用示例:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("The number is: %d\n", num);
return 0;
}
```
以上代码将字符串"12345"转换为整数并打印输出。
AI智能问答网
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。
点击这里>>使用创作工场,更聪明、更完整、更原创!