快速退出SPDOS汉字系统的小程序 河北 张广乐 1996-08-30 程序清单如下: //q.c # include "dos.h" main() {int k; static int code[6]={103,77,77,80,28,21}; static int value[6]={26368,19712,19712,20480,7181,5497}; union REGS in,out; for(k=0;k<6;k++) {in.h.ah=5; in.h.ch=code[k]; in.h.cl=value[k]; int86(0x16,&in,&out); } }