View Single Post
  #9 (permalink)  
Old November 9th, 2005, 06:46 PM
middledd middledd is offline
Authorized User
 
Join Date: Nov 2005
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Default

the preprocessor, as far as "#include" 's go, is a substitution tool. It does paste the code from the included file into the file it is being included in, as stated in a previous post. When you compile code, unless otherwise specified, a obj file is created (for me .obj files are created). The linker then links these .obj files; so that one .obj file may reference code in the other compiled .obj files, in this situation.

Reply With Quote