Tagged Questions
109
votes
8answers
11k views
Why are there sometimes meaningless do/while and if/else statements in C/C++ macros?
In many C/C++ macros I'm seeing the code of the macro wrapped in what seems like a meaningless do while loop. Here are examples.
#define FOO(X) do { f(X); g(X); } while (0)
#define FOO(X) if (1) { ...
77
votes
7answers
6k 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?
51
votes
11answers
7k views
What is the difference between a definition and a declaration?
As title says, the meaning of both eludes me.
20
votes
7answers
5k 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):
char **a;
const ...
10
votes
10answers
5k 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 somewhat more ...
5
votes
2answers
350 views
Secure C coding practices
I am looking for a comprehensive record of secure coding practices in C. Since i haven't found such a list existing here already we might as well make this into a community wiki, for further ...
1
vote
3answers
85 views
explanation of bit array implementation in C-FAQ
I was reading the C-FAQ question no: 20.8 which basically deals with bit arrays:
http://c-faq.com/misc/bitsets.html
One of the macros defined looks something like:
#define BITNSLOTS(nb) ((nb + ...
1
vote
5answers
169 views
How to create at runtime a two dimensional array in C
I cannot create a 2D array from 2 variables (eg int arr[i][j] not allowed) so how would I create a dynamically sized 2D array?
The dimensions of the array are only known at runtime in my program. ...