Fastest/efficient library for (2D) graphical application in C++?GDI+ is windows native and efficient enough for this work. Open GL and DirectX are not for this kind...
Floats as indices[quote]You aren't allowed to overload operators to where both operands are primitive types. [/quote]...
Floats as indices[quote]^ is the bitwise xor operator in C++. Use std::pow in <cmath> instead. [/quote] Or you can ov...
How can I get 4 bytes per reading in a filecrashing mean an exception. add a try...catch block around fread function. In the catch block add th...
How can I get 4 bytes per reading in a fileIf yourself created that file, add a 2 byte padding after that. do this in the program that creates ...