0
votes
Embed data in a C++ program
I have seen this to be done by converting the resource file to a C source file with only one char array defined containing the content of resource file in a hexadecimal format (to avoid problems wi …
5
votes
Orthogonal variables code duplication problem
Why you just do not extract the body of the for cycle into a separate function? Then you can do the funny stuff in the extracted function.
void DrawScaleX(HDC dc, int step, int x0, …
9
votes
Educational IDE to start programming in C++?
It depends on which world are you coming from to learn C++.
Do you have previous Java experience? - Use Eclipse CDT.
Have used .NET previously? - Go with Visual Studio C++ …
0
votes
What are some of the more obscure parts of C++?
If you want to learn something obscure about C++, try templates in depth and read Modern C++ Design by An …
