/*这是TC下开窗口一例*/
#include <stdio.h>
#include <conio.h>
main( )
{
window(10,10,60,15);
clrscr();
textattr(BLACK+WHITE*16);/*白底黑字*/
gotoxy(2,3);/*对应于绝对坐标(12,13)*/
cprintf("This is a joke");
getch();
/*以下恢复DOS屏幕状态*/
textattr(LIGHTGRAY+BLACK*16);
window(1,1,80,25);
clrscr();
}