Search Results

5
votes

Is there any way to pass a structure type to a c function

If you ensure that the field is placed in the same place in each such structure, you can simply cast a pointer to get at the field. This technique is used in lots of low level system libraries e.g. …
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 …