The Null Statement

The “null statement” is an expression statement with the expression missing. It is useful when the syntax of the language calls for a statement but no expression evaluation is called for. It consists of a semicolon.

Null statements are commonly used as placeholders in iteration statements or as statements on which to place labels at the end of compound statements or functions.

The following code fragment shows how to copy one string to another and incorporates the null statement:

char *strcpy( char *Dest, const char *Source )

{

char *DestStart = Dest;

// Assign value pointed to by Source to

// Dest until the end-of-string 0 is

// encountered.

while( *Dest++ = *Source++ )

; // Null statement.

return DestStart;

}