错误:ld返回1退出状态

时间:2015-03-28 03:13:39

标签: c++

#include <stdio.h>
#include <conio.h>
main() {
    void message();
    message();
    getch();
    clrscr();
    return 0;
}

void message() {
    char name[20];
    printf("Enter your name: ");
    gets(name);
//  gotoxy(25,4);
    printf("%s has a bright future",name);

}

以上是我尝试执行的代码。但是错误确实不允许它并且卡在clrscr()上。 我在系统中有conio.h文件,但它仍然不接受它。 我该怎么想遇到这个错误? 请帮忙

0 个答案:

没有答案