| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1450 人关注过本帖
标题:急,求高人指点,tc可运行,但borland c 3.1出错!
取消只看楼主 加入收藏
unicornz2008
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-6-17
收藏
 问题点数:0 回复次数:0 
急,求高人指点,tc可运行,但borland c 3.1出错!

求高人指点,谢谢
程序tc下可以正常运行,但到了borland c 3.1下面
编译没有问题,make 就出很多链接错误
Linker Error:undefined symbol _initgraph in module ERROR.C
Linker Error:undefined symbol _ cleardevice in module ERROR.C
Linker Error:undefined symbol _ line in module ERROR.C
Linker Error:undefined symbol _moveto in module ERROR.C
...

程序很简单

#include <graphics.h>
#include <stdio.h>
#include <conio.h>

void main()
{
int gdriver=DETECT,gmode;
initgraph(&gdriver,&gmode,"C:\\BC45\BGI");
cleardevice();
moveto(300,35);
printf("ATM");
line(80,60,560,60);
line(560,60,560,420);
line(560,420,80,420);
line(80,420,80,60);

moveto(190,80);
outtext("Welcome to use ATM service!");

setbkcolor(1);
getch();
closegraph();
}

搜索更多相关主题的帖子: borland Linker 高人 symbol module 
2007-06-17 19:55
快速回复:急,求高人指点,tc可运行,但borland c 3.1出错!
数据加载中...
 
   



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

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