当前位置: 代码迷 >> C语言 >> dev-c++编译c程序有错误问题 谢谢
  详细解决方案

dev-c++编译c程序有错误问题 谢谢

热度:521   发布时间:2007-12-29 01:29:29.0
dev-c++编译c程序有错误问题 谢谢
#include <stdio.h>
#include<conio.h>
main( )
  { int i;
    static char str[80];
    clrscr( );
    for (i=0;i<80;i++)
        { str[i]=getch ( );  
           printf("*");                      
           if (str[i]=='\x0d') break;
        }            
       i=0;
       while  (str[i]!='\x0d')
       printf("%c",str[i++]);      
       printf("\n");
       getch ( );                               
    }    
出现的错误是
编译器: Default compiler
Building Makefile: "C:\Program Files\DEV-CPP\na\Makefile.win"
执行  make...
make.exe -f "C:\Program Files\DEV-CPP\na\Makefile.win" all
gcc.exe -c charprintf.c -o charprintf.o -I"C:/Program Files/DEV-CPP/include"   
gcc.exe charprintf.o  -o "字符数组.exe" -L"C:/Program Files/DEV-CPP/Lib"  
charprintf.o(.text+0x2c):charprintf.c: undefined reference to `clrscr'
collect2: ld returned 1 exit status
make.exe: *** [字符数组.exe] Error 1
执行结束
不清楚为什么   请高手  点  谢谢
搜索更多相关的解决方案: 编译  

----------------解决方案--------------------------------------------------------

菜鸟能回答吗?
clrscr( )
改为
void clrscr(void)
就能正确编译了
----------------解决方案--------------------------------------------------------
LS玩声明啊???```LZ玩的是调用哦```

DEV-CPP里``清屏是这样用的``

#include <stdlib.h>

.....
system ( " cls " ) ;
....
----------------解决方案--------------------------------------------------------
谢谢   各位高手的  点
以上两种方法   都好用
能说说 为什么吗   超谢谢了

查 c  函数的 一般情况下 他不是应该  #include<conio.h>吗
而在 dev-c++中不这么用吗
那其他函数在用的时候呢??

[[italic] 本帖最后由 小妖娃娃na 于 2007-12-29 10:59 编辑 [/italic]]
----------------解决方案--------------------------------------------------------
回复 3# 的帖子
cls是win的命令,是在console下清除屏幕的命令
严格说,那并不是清屏函数
----------------解决方案--------------------------------------------------------
回复 2# 的帖子
好像我的DEV C++ 5 只能用system ( " cls " ) ;耶......(没有包含>#include <stdlib.h>)

void clrscr(void);没有效果......要包含什么头文件么?#include<stdio.h>#include<conio.h>#include <stdlib.h>(三个都包含了都不行 )

----------------解决方案--------------------------------------------------------
clrscr()  是TC下的函数
----------------解决方案--------------------------------------------------------
system("cls");

呵呵,但是要加#include<stdlib.h>这个头哈~~~~~~~~~
----------------解决方案--------------------------------------------------------
原帖由 [bold][underline]fangfangff[/underline][/bold] 于 2007-12-30 07:20 发表 [url=http://bbs.bc-cn.net/redirect.php?goto=findpost&pid=1165508&ptid=194907][/url]
system("cls");

呵呵,但是要加#include这个头哈~~~~~~~~~

......问题是,不加#include<stdlib.h>也可以.....
而void clrscr(void);加了三个都没用(stdlib.h,stdio.h,conio.h)......(不能清屏,但可以编译)
void clrscr(void);是正确的用法么?
----------------解决方案--------------------------------------------------------
  相关解决方案