4
votes
Why do we need extern “C”{ #include <foo.h> } in C++?
C and C++ have different rules about names of symbols. Symbols are how the linker knows that the call to function "openBankAccount" in one object file produced by the compiler is a reference to tha …
0
votes
How do you detect/avoid Memory leaks in your (Unmanaged) code?
At the top of this list (when I read it) was valgrind. Valgrind is excellent if you are able to reproduce the leak on a test system. I've used it with great success.
What if you've just not …
