f78 Swallowing the Semicolon Contents|Index|Previous|Next
 

Swallowing the semicolon 

Often it is desirable to define a macro that expands into a compound statement. Consider, for example, the following macro, that advances a pointer (the argument, p, says where to find it) across whitespace characters.

A call to this macro might be SKIP_SPACES (p, lim). Strictly speaking, the call expands to a compound statement, which is a complete statement with no need for a semicolon to end it. But it looks like a function call. So it minimizes confusion if to use it like a function call, writing a semicolon afterward, as in the following example. But this can cause trouble before else statements, because the semicolon is actually a null statement. Suppose you have the following input. The presence of two statements—the compound statement and a null statement—in between the if condition and the else makes invalid C code. The definition of the macro SKIP_SPACES can b 4d2 e altered to solve this problem, using a do...while statement. Use the following input as an example. Now SKIP_SPACES (p, lim); expands into one output statement as the following example shows. 0