-
Modules
I'm trying to compile an example from "Sams Teach Yourself C++ in 10 minutes" (the scanned chapter -> http://rapidshare.de/files/18667671/Lesson_8.doc.html and only the code without line marks -> http://rapidshare.de/files/18675943/Modules.doc.html), but I really don't know how to do that. I think, I have to at first only make all the object files and only then link them. Can someone please tell me how to do that?
PS: I guess Dev-c++ can't do that :/
-
Modules are relatively easy to program. An IDE like Dev C++ can easily handle modules. It does not require a lot of technical know-how. All you need to do is use the exact code that they give you, and include all the files in the project. And hit compile :).
-
Thanks, joeprogrammer. Now it really worked :)
And I thought that it must be sth really difficult...