关于C语言文本输入输出窗口函数问题!
textattr(); 这个函数里面说可以闪字 我这怎么没效果! 蓝底黄色闪字 textattr(128+YELLOW+((BULE)<<4));但我试的时候 不闪啊!
#include <conio.h>
main()
{
int i;
char *f[]={"Load F3","Pick Alt-F3","New ",
"Save F2","Write to ","Directory",
"Change dir","Os shell ","Quit Alt-X"};
char buf[11*16*2]; /*这里 为什么这样定义的呢? 我把里面改为1 结果运行后退不出来了!char 是字符 他里面数字什么意思呢? */
clrscr();
textcolor(YELLOW);
textbackground(BLUE);
clrscr();
gettext(10, 2, 24, 11, buf);
window(10, 2, 24, 11);
textbackground(RED);
textcolor(YELLOW);
clrscr();
for(i=0; i<9; i++)
{
gotoxy(1, i+1);
cprintf("%s", f[i]);
}
getch();
puttext(10, 2, 24, 11, buf); /*这里 怎么把原来的字 覆盖住了! 它不是输出buf里面的字符的么?
getch();
}
请大家帮个忙 看看什么原因呢!
[ 本帖最后由 a4188809b 于 2009-10-6 18:52 编辑 ]