Search Results

3
votes

C++ Practice Problems

Try Topcoder. You can skip the competition aspect and just try old problems. The benefit is that you can solve a problem on your own, then loo …
1
vote

Can’t access variable in C++ DLL from a C app

In the dll source code you should have this implementation so that the .lib file exports the symbol: extern "C" _declspec(dllexport) char* MyNewVariable = …
2
votes

What’s the best way to do fixed-point math?

Chaning fixed point representations is commonly called 'scaling'. If you can do this with a class with no performance penalty, then that's the way to go. Depends heavily on the compiler an …