我是否在#includes中包含某些内容,或者我如何使其工作?我在我的妈妈在VS上工作,但回到家,我不能得到它的代码块
if (tmp2 <= B_dest[hr - 6]) { sprintf(name,"B%d",tmp3); }else{ sprintf(name,"A%d",tmp3); }
#include<stdio.h>
stdio.h声明函数sprintf,没有标题,编译器没有办法了解什么sprintf的意思,因此它给你的错误.
在C注意,
包括cstdio在std命名空间和全局命名空间中导入符号名称.包括stdio.h在全局命名空间中输入符号名称,可能在std命名空间中.
这同样适用于所有c风格的标题.