功 能: 返回最後一次不成功的圖形操作的錯誤代碼
用 法: int far graphresult(void);
程式例:
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
/* initialize graphics and local variables */
initgraph(&gdriver, &gmode, "");
/* read result of initialization */
errorcode = graphresult();
if (errorcode != grOk) /* an error occurred */
{
printf("Graphics error: %s\n", grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1); /* terminate with an error code */
}
/* draw a line */
line(0, 0, getmaxx(), getmaxy());
/* clean up */
getch();
closegraph();
return 0;
}
相關詞條
-
graphresult
graphresult是一個命令函式。其功能是返回最後一次不成功的圖形操作的錯誤代碼。
-
C語言庫函式
= graphresult(); /* an error occurred...
定義 內容介紹 相關概念 常用的庫函式 -
Bar
of initialization */ errorcode = graphresult...
-
八皇后問題
,&gmode,""); errorcode=graphresult...
問題介紹 問題算法 圖形實現 回溯算法 -
setcolor
of initialization */errorcode = graphresult...
簡介 程式例 -
moveto()
*/ errorcode = graphresult...
名稱 程式例 -
rectangle()
= graphresult();if (errorcode != grOk...
-
detectgrap
= graphresult(); if (errorcode...
解釋 程式例 -
drawpoly
= graphresult(); if (errorcode != grOk...
解釋 程式例