Posts Tagged ‘C++’

Comparison of Float and Double Precision

September 7th, 2008 | Posted by Mason | 1 Comment
C++ supports two primitive floating point types: float and double. These are based on the IEEE 754 standard, which defines a binary standard for 32-bit floating point and 64-bit double ...

Include Guard: #pragma once vs. #ifndef #define #endif

September 6th, 2008 | Posted by Mason | 2 Comments
In the C and C++ programming languages, an include guard, sometimes called a macro guard, is a particular construct used to avoid the problem of double inclusion when dealing with ...