I wonder whether #include also means “use”. If not, would you please tell me what the compiler will do with the extra files, included functions? If yes, does this mean they have their memories allocated in the output PE?
I wonder whether #include also means use. If not, would you please tell me
Share
#include "file.h"tells the preprocessor to openfile.hand merge the content of this file with the current file in which you write#include "file.h".That is, if you have two files as:
Then preprocessor copies the content of
file.htofile.cppas: