c图形编程的一个问题
#include <conio.h>void main()
{
register int i;
gotoxy(6,8);
printf("This is a test of the clreol() function.");
getch();
gotoxy(6,8);
clreol();
for(i=0;i<20;i++)
printf("Hello\n");
getch();
clrscr();
}
这段程序中的两个getch有什么用啊?谢谢大家指点指点啊