gpt4 book ai didi

Conio.h 在代码块中不工作( undefined reference ..)

转载 作者:太空宇宙 更新时间:2023-11-04 03:49:01 25 4
gpt4 key购买 nike

我正在使用 Code::Blocks,问题是我尝试了很多次来解决 Conio 库和其他一些库的问题。每次我使用类似 clrscr(); textcolor(); 或它所说的任何内容时;

 Undefined reference to textcolor.

例如,这个简单的程序本应以特定颜色显示总和,但它并没有成功,尽管我之前已经看到它可以运行。

#include <stdio.h>
#include <conio.h>
int fx(int x,int y,int z)
{
return x+y+z;
}
int main()
{
int a,b,c;
printf("Enter three values to a, b and c.\n");
scanf("%d%d%d",&a,&b,&c);
int total=fx(a,b,c);
textcolor(14);
printf("Output ="); cprintf(" %d",&total);
getch();
return 0;
}

P.S.:我使用的是 GNU GCC。有时,当我选择另一个编译器或只是打开 Code::Blocks 时,它会显示“缺少某些插件”或类似的内容。谁能帮忙??

最佳答案

conio.h 不支持 gcc。

关于Conio.h 在代码块中不工作( undefined reference ..),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22125806/

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