相关代码 |
|
/*2-1.C*/ #include #include #include #define VIDEO 0x10 void movetoxy(int x,int y) { union REGS regs; regs.h.ah=2; regs.h.dh=y; regs.h.dl=x; regs.h.bh=0; int86(VIDEO,®s,®s); /*BIOS中断调用*/ } int main(void) { clrscr(); /*清屏幕*/ movetoxy(35,10); /*调用movetoxy函数*/ printf("Hello\n"); return 0; }
相关资源 |
|