很短的一段代码,一个C++类型转换问题不太懂
发布网友
发布时间:2023-05-10 09:37
我来回答
共4个回答
热心网友
时间:2023-10-03 03:26
错误说atoi没有被声明,man atoi发现,包含atoi的头文件是stdlib.h,所以你只需要#include <stdlib.h>就可以了
[root@localhost ~]# man atoi
ATOI(3) Linux Programmer’s Manual ATOI(3)
NAME
atoi, atol, atoll, atoq - convert a string to an integer
SYNOPSIS
#include <stdlib.h>
int atoi(const char *nptr);
long atol(const char *nptr);
long long atoll(const char *nptr);
long long atoq(const char *nptr);
DESCRIPTION
The atoi() function converts the initial portion of the string pointed to by nptr to int. The behaviour is the same as.......
热心网友
时间:2023-10-03 03:27
错误的意思,你没有申明atoi这个函数。atoi的头文件是 #include <stdlib.h>
int main()结束要加上 return 0;
热心网友
时间:2023-10-03 03:27
加上下面这一句
#include <stdlib.h>
看看那
错误信息是说没有找到atoi的定义
热心网友
时间:2023-10-03 03:28
包含头文件
#include <stdlib.h>