我是靠谱客的博主 大力水蜜桃,最近开发中收集的这篇文章主要介绍c 语言函数手册,closegraph - C 语言库函数手册,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

closegraph

功 能: 关闭图形系统

用 法: void far closegraph(void);

程序例:

#include

#include

#include

#include

int main(void)

{

/* request auto detection */

int gdriver = DETECT, gmode, errorcode;

int x, y;

/* initialize graphics mode */

initgraph(&gdriver, &gmode,

"");

/* read result of initialization */

errorcode = graphresult();

if (errorcode != grOk) /* an error

occurred */

{

printf("Graphics error: %sn",

grapherrormsg(errorcode));

printf("Press any key to halt:");

getch();

exit(1); /* terminate with an error code */

}

x = getmaxx() / 2;

y = getmaxy() / 2;

/* output a message */

settextjustify(CENTER_TEXT, CENTER_TEXT);

outtextxy(x, y, "Press a key to close

the graphics system:");

/* wait for a key */

getch();

/* closes down the graphics system */

closegraph();

printf("We’re now back in text

mode.n");

printf("Press any key to halt:");

getch();

return 0;

}

最后

以上就是大力水蜜桃为你收集整理的c 语言函数手册,closegraph - C 语言库函数手册的全部内容,希望文章能够帮你解决c 语言函数手册,closegraph - C 语言库函数手册所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部