c++ - VS2015 Additional Include Directories not finding included header? -


the question title says all. here project settings addition include directories. enter image description here 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.

enter image description here

and curses.h file in include folder enter image description here

anyone might have clue went wrong?

try use #include "curses.h", instead of #include <curses.h>


Comments

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

sql server - SQL Query returns one result, does not return 0 or NULL result -