for(int i=0; i < 100; i++){ /*do some thing with i */ printf("this is i: %d", i); } #### { int i; for(i=0; i < 100; i++){ /*do something here with i */ printf("this is i: %d", i); } }