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

java - Run spring boot application error: Cannot instantiate interface org.springframework.context.ApplicationListener -

reactjs - React router and this.props.children - how to pass state to this.props.children -

Excel VBA "Microsoft Windows Common Controls 6.0 (SP6)" Location Changes -