问题标题说明了一切。 这是我添加的目录的项目设置。 这是我目前的计划
#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;
}
以下是错误。
任何人都可能知道我哪里出错了?
答案 0 :(得分:0)
尝试使用#include "curses.h"
,而不是#include <curses.h>