Search Results

2
votes

What’s the difference between a procedural program and an object oriented program?

It depends how you define OOP. In terms of Java-like OOP where you call methods on objects, procedural programming is pretty much the same. As far as I can tell you can emulate all OOP principles ( …
0
votes

Testing pointers for validity (C/C++)

I have seen various libraries use some method to check for unreferenced memory and such. I believe they simply "override" the memory allocation and deallocation methods (malloc/free), which has som …
6
votes

C++ development on linux - where do I start?

What are recommended guides on creating a make file, how do I compile from this makefile (do I call g++ myself, do I use 'make'?) I learned how to write m …