谁来帮帮我,感谢!
请问这个程序哪里错了,连接后说是textbackground()没定义,那要怎么定义呢?#include<conio.h>
void main()
{
int color;
for(color=0;color<8;color++)
{
textbackground(color);
cprintf("this is color %d\r\n",color);
cprintf("press any key to continue \r\n");
getch();
}
}
搜索更多相关的解决方案:
感谢
----------------解决方案--------------------------------------------------------
没有定义,打个比方就是根本不存在这个函数,不可能凭空制造吧?那当然无法编译了!
你要这个函数实现什么功能就你自己写呀,如果不要这个函数干脆删掉
----------------解决方案--------------------------------------------------------
这是C的语法吗?
----------------解决方案--------------------------------------------------------
那要怎样定义呢?
能帮我写完整么?
----------------解决方案--------------------------------------------------------
#include<stdio.h>
void textbackground(color) \\没有类型 系统默认是INT型 有返回制的 我加上了个VOID 看下
{
语句;
}
void main()
{
int color;
for(color=0;color<8;color++)
{
textbackground(color);
printf("this is color %d\r\n",color);
printf("press any key to continue \r\n");
getch();
}
}
----------------解决方案--------------------------------------------------------
zhichi
zhichi ----------------解决方案--------------------------------------------------------
不懂你要干什么
----------------解决方案--------------------------------------------------------
晕
没有对textbackground()的定义 光有声明~``
----------------解决方案--------------------------------------------------------