gpt4 book ai didi

c - 警告 : implicit declaration of function 'system'

转载 作者:行者123 更新时间:2023-11-30 18:35:47 25 4
gpt4 key购买 nike

我的编译器出现错误:

Warning: implicit declaration of function 'system'

我添加:

system("cls");

为了能够清除屏幕,现在我收到错误。我正在使用此代码来测试:

#include <stdio.h>

int nothing; //random name

int main()
{
printf("this is a msg");
scanf("%d",&nothing);
system("cls");
printf("hello");
getchar();

return 0;
}

这只是一个测试代码,所以很马虎。我是编码新手,因此我们将不胜感激。

最佳答案

对于 C++:#include <cstdlib> ,对于 C:#include <stdlib.h> .

或者,您可以执行以下操作:

#ifdef __cplusplus__
#include <cstdlib>
#else
#include <stdlib.h>
#endif

if (system("CLS")) system("clear");

您还可以查看完整的文章 Clear the screen .

关于c - 警告 : implicit declaration of function 'system' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44993224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com