c++ - VS2015 Additional Include Directories not finding included header? -
the question title says all. here project settings addition include directories. here current program
#include <curses.h> int main() { initscr(); /* start curses mode */ printw("hello world !!!"); /* print hello world */ refresh(); /* print on real screen */ getch(); /* wait user input */ endwin(); /* end curses mode */ return 0; }
here errors.
and curses.h file in include folder
anyone might have clue went wrong?
try use #include "curses.h"
, instead of #include <curses.h>
Comments
Post a Comment