User profile: majidkamali1370

User info
User name:majidkamali1370
Name:Majid
Location:Tehran
Bio:I know a little turbo c++ 4.5
I want to know more.
History
Joined:
Number of posts:202
Latest posts:

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 file
crashing 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 file
If yourself created that file, add a 2 byte padding after that. do this in the program that creates ...