I have some question about header files(I'm talking about c, but I think it will be the same for c++), let's assume I have some my_ADT.c file (inside I have implementation of the functions and actual struct) and also my_ADT.h inside I have pointer for my struct
Question: if I use ADT Set for implementation my_ADT do I need to include set.h to both files my_ADT.h and my_ADT.c or including only to my_ADT.h will be sufficient (inside my_ADT.c I have #include "my_ADT.h") thanks in advance
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
If |
|||
|
|
|
There are 3 scenarios
For scenario 3) add the For scenario 2) include For scenario 1) include |
|||
|
|
|
In addiction to pmg answer you must know that a good way of avoiding #include problem is to surround all header file with a precomplier instruction that check if the .h file has been already included.
this prevent error caused by multiple header inclusion hope this helps |
|||
|
|