|
发表于 2005-2-18 16:09:09
|
显示全部楼层
Post by daydayup
我编c程序时
头文件用#include<graph.h>
编译时提示找不到graph.h文件。例如:
- #include<stdio.h>
- #include<graph.h>
- main()
- {
- _clearscreen(0);
- return 0;
- }
复制代码
我的c教材上说的是_clearscreen函数的头文件是graph.h。如果gcc没有这个文件的话怎么实现清屏呢?
这是dos下的程序吧。linux的终端图形编程不是这样做的。具体的可以看看curses库的使用方法。
想省事一点就用vt100码,置项的索引中有。 |
|