Sunday, June 9, 2013

Organizing Code Files in C and Cpp GameDev.net



Organizing Code Files in C and C++
GameDev.net
While many simple programs fit into a single C or CPP source file, any serious project is going to become far more manageable if split up into several source files. However, many beginning programmers may not realize what the point of this is - especially since some may have tried it themselves and run into so many problems that they decided it wasn't worth the effort. This article will explain why to do it, and how to do it properly. A brief


explanation of how compilers and linkers work will be given where necessary, to help understand why things have to be done in a certain way.

No comments:

Post a Comment