Working with multiple files?
Hey guys. I've reached the point where I probably need to work in multiple files at once on a project. This is both good and bad. Is it hard to do it?
Could you guys explain how to do it? If you don't feel like writing several pages on how to do it, culd you please point me to good tutorials that taches it?
Thanks.
Include files is what you will want to look into.
Basically, you define functions, classes, structures, etc. inside your header files (.h) then write out actual function body code and such in the source (.cpp / c) files.
And no its not hard to do, its part of using C/C++.