A null statement is just a semicolon. It's a statement that does nothing. For example:
#include <stdio.h>
int main ( void )
{
printf ( "Blah\n" ); /* Statement */
; /* Null statement */
return 0;
}
Reputation Points: 6442
Solved Threads: 1393
Bad Cop
Offline 11,807 posts
since Sep 2004