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.