/* forLoopQuiz3a.c  P. Conrad Fall 2005 CISC105 */
/* to settle whether j is reinitialized each time
   through the for loop, or whether it keeps its value */

#include <stdio.h>
int main(void)
{
  int i,j;
  
  for (i=3; i<6; i++)
    {
      for( j= 4; j<=7; j++)
	printf("j=%d ",j);
      printf("\n");
    }
  

  return 0;
}

