C语言的gotoxy()与clrscr()函数实例
Admin | 2007-12-29 18:56:24 | 被阅次数 | 15315
本教程,我们一起来学习gotoxy()与clrscr()这两个函数的使用。
C语言代码如下。
程序源代码:
#include <conio.h>
void main(void)
{
clrscr(); /*清屏函数*/
textbackground(2);
gotoxy(1, 5); /*定位函数*/
cprintf("Output at row 5 column 1\n");
textbackground(3);
gotoxy(20, 10);
cprintf("Output at row 10 column 20\n");
}