Explore what happens when we change the index variable 'i' inside the body of the for loop.

for (int i = ; i < ; i = i + ) {
 i = i + ;
 printf("%i ", i);
}
Output: