当前位置: 技术问答>linux和unix
linux下的一个C程序,有好多错误?????????
来源: 互联网 发布时间:2015-03-01
本文导语: /*File :hello.c #include int main(int argc,char * argv[]) { initscr(); box(stdscr,ACS_VLINE,ACS_HLINE); mvaddstr(11,30,"hello world!"); refresh(); getch(); endwin(); return 0; } gcc -o prog hello.c 有很多错误,为什末呀 | ...
/*File :hello.c
#include
int main(int argc,char * argv[])
{
initscr();
box(stdscr,ACS_VLINE,ACS_HLINE);
mvaddstr(11,30,"hello world!");
refresh();
getch();
endwin();
return 0;
}
gcc -o prog hello.c
有很多错误,为什末呀
#include
int main(int argc,char * argv[])
{
initscr();
box(stdscr,ACS_VLINE,ACS_HLINE);
mvaddstr(11,30,"hello world!");
refresh();
getch();
endwin();
return 0;
}
gcc -o prog hello.c
有很多错误,为什末呀
|
加上 -lcurses 试试