Which directories does include statement search in C/C++?
- by user198729
test.c:
include "file.h";
In the above statement, which directories will be searched ?
I suppose the directory where test.c locates will be searched, right?
But is that all?
BTW, what's the benifit to use a header file? Java doesn't require a header file...