错误 ID 返回 1 退出状态和 program.c:(.text+0xe):undefined reference to `clrscr'
Error Id returned 1 exit status and program.c:(.text+0xe):undefined reference to `clrscr'
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
clrscr();
printf("Enter the number to be displayed");
scanf("%d",&i);
printf("The entered number is %d",i);
getch();
}
我可以在 Turbo C++ 中 运行 上述程序,但在 Dev C++ 中我遇到了这个错误。
错误:
<conio.h>
是 Borland 和少数其他编译器和 libc 实现提供的非标准头文件。 Dev C++ 通常使用 Windows GCC 端口之一,它不提供这些函数的任何实现。
如果你想在两者中使用某种 clrscr
函数,你将不得不想出一个更便携的解决方案,因为 <conio.h>
不适用于 GCC。
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
clrscr();
printf("Enter the number to be displayed");
scanf("%d",&i);
printf("The entered number is %d",i);
getch();
}
我可以在 Turbo C++ 中 运行 上述程序,但在 Dev C++ 中我遇到了这个错误。
错误:
<conio.h>
是 Borland 和少数其他编译器和 libc 实现提供的非标准头文件。 Dev C++ 通常使用 Windows GCC 端口之一,它不提供这些函数的任何实现。
如果你想在两者中使用某种 clrscr
函数,你将不得不想出一个更便携的解决方案,因为 <conio.h>
不适用于 GCC。