问题标题说明了一切。这是我添加的包含目录的项目设置。
这是我目前的程序
#include <curses.h>
int main()
{
initscr(); /* Start curses mode */
printw("Hello World !!!"); /* Print Hello World */
refresh(); /* Print it on to the real screen */
getch(); /* Wait for user input */
endwin(); /* End curses mode */
return 0;
}
这是错误。
任何人都可能知道我哪里出错了?