Is there any difference between #include "./test.h" and #include "test.h" for the C/C++ preprocessor?
|
|
||||
|
|
|
No, there is no difference. You could also have
And it would be the same |
|||||
|
|
According to the C standard, there is no difference: the compiler gets to specify how they are searched. In practice, there shouldn't be any difference, either, for any of the implementations I am aware of. |
|||
|
|
|
Both styles will be treated the same by the pre-processor. The standard practice is
and pass the include file path as an option to the compiler. (For instance, the -I option of GCC). This makes it easy to change the location of header files. You just need to make a single change in the project's make file. |
|||
|
|
|
In my opinion there is an important difference. In the case of In the case of |
|||||||||||
|