40
votes
6answers
2k views
Why isn’t sizeof for a struct equal to the sum of sizeof of each member?
Why does the 'sizeof' operator return a size larger for a structure than the total sizes of the structure's members?
13
votes
7answers
2k views
Why can’t I convert ‘char**’ to a ‘const char* const*’ in C?
The following code snippet (correctly) gives a warning in C and an error in C++ (using gcc & g++ respectively, tested with versions 3.4.5 and 4.2.1; MSVC does not seem to care) …
10
votes
9answers
1k views
Ways to ASSERT expressions at build time in C
I'm tidying up some older code that uses 'magic numbers' all over the place to set hardware registers, and I would like to use constants instead of these numbers to make the code s …
