grapherrormsg
函数
grapherrormsg,返回一个错误信息串的指针
定义
函数名: grapherrormsg
功 能:
用 法: char *far grapherrormsg(int errorcode);
示例
#include <graphics.h>
#include
#include
#include
#define NONSENSE -50
int main(void)
{
/* FORCE AN ERROR TO OCCUR */
int gdriver = NONSENSE, gmode, errorcode;
/* initialize graphics mode */
/* read result of initialization */
errorcode = graphresult();
/* if an error occurred, then output a */
/* descriptive error message. */
if (errorcode != grOk)
{
getch();
exit(1); /* terminate with an error code */
}
/* draw a line */
line(0, 0, getmaxx(), getmaxy());
/* clean up */
getch();
closegraph();
return 0;
}
参考资料
最新修订时间:2024-01-27 13:23
目录
概述
定义
示例
参考资料