
void function( void )
{
   int loop_words; // this variable is local to the function

   for( loop_words=0; loop_words<3; loop_words++ )
   {
      int local_var; // this variable is local to the block formed by the 'for' 
   }
}
