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?
| |||||||||||||||
feedback
|
Yes and No. It depends.
Guards prevent header from being included in a file, indirectly or directly, more than once! | |||||||||||
feedback
|
|
When you complile | |||
|
feedback
|
|
Definitions are not propagated between | |||
|
feedback
|
|
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. | |||
|
feedback
|