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 …
