When file1.c includes inc.h (containing the include guard #ifndef INC_H) for the first time, the #define INC_H is performed. But now, when another file2.c includes the same inc.h, is the macro INC_H already defined, all it's the same story and previous definition is not propagated here?
|
|
|||||||||||||||
|
Yes and No. It depends.
Guards prevent header from being included in a file, indirectly or directly, more than once! |
|||||||||||
|
|
When you complile |
|||
|
|
|
Definitions are not propagated between |
|||
|
|
|
No, think a moment what " So Include guards are useful when include files have other include into it. In these cases you can avoid trouble using the guards. |
|||
|
|