标题:问个非常菜的问题
只看楼主
joking
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2005-3-3
 问题点数:0 回复次数:0 
问个非常菜的问题
这个程序返回最近一次图形操作结果状态直,有什么用处呢?

或者说具体用在哪里?

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main(void)
{
    int gdriver = DETECT, gmode, errorcode;
    initgraph(&gdriver, &gmode,"");
    errorcode = graphresult();
    if (errorcode != grOk)
    {
        printf("Graphics error: %s
", grapherrormsg(errorcode));
        printf("Press any key to halt:");
        getch();
        exit(1);
    }
    line(0, 0, getmaxx(), getmaxy());
    getch();
    closegraph();
    return 0;
}
搜索更多相关主题的帖子: include 
2005-04-14 12:46



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-15633-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.089899 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved