int i; /* global variable */ . . void fn( void ) { for( i = 0; i != 4; ++i ) { printf( ``%d '', i ); } printf( ``\n'' ); } . .