ImageVerifierCode 换一换
格式:DOCX , 页数:11 ,大小:17.12KB ,
资源ID:16445459      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/16445459.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(C语言函数大全I文档格式.docx)为本站会员(b****3)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

C语言函数大全I文档格式.docx

1、 /* initialize graphics and local variables */ initgraph(&gdriver, &gmode, ); /* read result of initialization */ errorcode = graphresult(); if (errorcode != grOk) /* an error occurred */ printf(Graphics error: %sn, grapherrormsg(errorcode);Press any key to halt: getch(); exit(1); /* terminate with

2、an error code */ maxx = getmaxx(); x = 0; y = getmaxy() / 2; /* draw the image to be grabbed */ draw_arrow(x, y); /* calculate the size of the image */ size = imagesize(x, y-ARROW_SIZE, x+(4*ARROW_SIZE), y+ARROW_SIZE); /* allocate memory to hold the image */ arrow = malloc(size); /* grab the image *

3、/ getimage(x, y-ARROW_SIZE, x+(4*ARROW_SIZE), y+ARROW_SIZE, arrow); /* repeat until a key is pressed */ while (!kbhit() /* erase old image */ putimage(x, y-ARROW_SIZE, arrow, XOR_PUT); x += ARROW_SIZE; if (x = maxx) /* plot new image */ /* clean up */ free(arrow); closegraph(); return 0;void draw_ar

4、row(int x, int y) /* draw an arrow on the screen */ moveto(x, y); linerel(4*ARROW_SIZE, 0); linerel(-2*ARROW_SIZE, -1*ARROW_SIZE); linerel(0, 2*ARROW_SIZE); linerel(2*ARROW_SIZE, -1*ARROW_SIZE); initgraph 初始化图形系统 void far initgraph(int far *graphdriver, int far *graphmode, char far *pathtodriver); /

5、* request auto detection */ /* initialize graphics mode */ /* return with error code */ /* draw a line */ line(0, 0, getmaxx(), getmaxy(); inport 从硬件端口中输入 int inp(int protid);dos.h int result; int port = 0; /* serial port 0 */ result = inport(port);Word read from port %d = 0x%Xn, port, result); insl

6、ine 在文本窗口中插入一个空行 void insline(void); clrscr(); cprintf(INSLINE inserts an empty line in the text windowrnat the cursor position using the current textrnbackground color. All lines below the empty onernmove down one line and the bottom line scrollsrnoff the bottom of the window.rnrnPress any key to c

7、ontinue: gotoxy(1, 3); insline(); installuserdriver 安装设备驱动程序到BGI设备驱动程序表中 int far installuserdriver(char far *name, int (*detect)(void);/* function prototypes */int huge detectEGA(void);void checkerrors(void); int gdriver, gmode; /* install a user written device driver */ gdriver = installuserdriver(

8、EGA, detectEGA); /* must force use of detection routine */ gdriver = DETECT; /* check for any installation errors */ checkerrors(); /* check for any initialization errors */* detects EGA or VGA cards */int huge detectEGA(void) int driver, mode, sugmode = 0; detectgraph(&driver, &mode); if (driver =

9、EGA) | (driver = VGA) /* return suggested video mode number */ return sugmode; else /* return an error code */ return grError;/* check for and report any graphics errors */void checkerrors(void) int errorcode; /* read result of last graphics operation */= grOk) installuserfont 安装未嵌入BGI系统的字体文件(CHR) i

10、nt far installuserfont(char far *name);/* function prototype */ int gdriver = DETECT, gmode; int userfont; int midx, midy; midx = getmaxx() / 2; midy = getmaxy() / 2; /* install a user defined font file */ userfont = installuserfont(USER.CHR /* select the user font */ settextstyle(userfont, HORIZ_DI

11、R, 4); /* output some text */ outtextxy(midx, midy, Testing! int86 通用8086软中断接口 int int86(int intr_num, union REGS *inregs, union REGS *outregs);#define VIDEO 0x10void 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

12、 page 0 */ int86(VIDEO, ®s, ®s); movetoxy(35, 10);Hellon int86x int int86x(int intr_num, union REGS *insegs, union REGS *outregs, struct SREGS *segregs);process.h char filename80; union REGS inregs, outregs; struct SREGS segregs;Enter filename: gets(filename); inregs.h.ah = 0x43; inregs.h.al =

13、 0x21; inregs.x.dx = FP_OFF(filename); segregs.ds = FP_SEG(filename); int86x(0x21, &inregs, &outregs, &segregs);File attribute: %Xn, outregs.x.cx); intdos 通用DOS接口 int intdos(union REGS *inregs, union REGS *outregs);/* deletes file name; returns 0 on success, nonzero on failure */int delete_file(char

14、 near *filename) int ret; regs.h.ah = 0x41; /* delete file */ regs.x.dx = (unsigned) filename; ret = intdos(& /* if carry flag is set, there was an error */ return(regs.x.cflag ? ret : 0); int err; err = delete_file(NOTEXIST.$ if (!err)Able to delete NOTEXIST.$nNot Able to delete NOTEXIST.$n intdosx

15、 通用DOS中断接口 int intdosx(union REGS *inregs, union REGS *outregs, struct SREGS *segregs);int delete_file(char far *filename) struct SREGS sregs; regs.x.dx = FP_OFF(filename); sregs.ds = FP_SEG(filename); ret = intdosx(&sregs); intr 改变软中断接口 void intr(int intr_num, struct REGPACK *preg);string.hdir.h#define CF 1 /* Carry flag */ char directory80; struct REGPACK reg;Enter directory to change to: gets(directory); reg.r_ax = 0x3B int stat; /* use func 8 to determine if the default drive is removable */ stat = ioctl(0, 8, 0, 0);stat)Drive %c is removable.n, getdisk() + ADrive %c is not removable.n

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1