79.c

来自「《C语言实战105例》,一些常用的c语言源代码」· C语言 代码 · 共 31 行

C
31
字号
  #include   <stdio.h>     
  #include   <conio.h>     
  #include   <dos.h>     
    
  #define   VIDEO   0x10     
    
  void   movetoxy(int   x,   int   y)     
  {     
        union   REGS   regs;     
    
        regs.h.ah   =   2;     /*   set   cursor   postion   */     
        regs.h.dh   =   y;     
        regs.h.dl   =   x;     
        regs.h.bh   =   0;     /*   video   page   0   */     
        int86(VIDEO,   &regs,   &regs);     
  }     
    
  int   main(void)     
  {     
	int i;
	clrscr();
	printf("*******************************************\n");
	printf("** This is a simple dos interupt program **\n");
	printf("**                                       **\n");
	printf("*******************************************\n");
        movetoxy(10, 10);     
	printf("This is a simple dos interupt program!\n");
	scanf("%d",i);
	return   0;
  }     

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?