《C语言程序设计实训》第二章

源代码在线查看: 2-1.c

软件大小: 2 K
上传用户: wldxmy
关键词: C语言 程序设计
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*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;
				}
							

相关资源