For the declaration and loop: int joe[7] = { 0, 1, 2, 3, 4, 5, 6 }; for( i = 0; i = 6; i++ ) printf( "%d\n", joe[i] ); The output will be: 0 1 2 3 4 5 6 -> ( this is where the cursor is at the end of the loop ) Notice that the loop begins with 0. 0 is the first index of any array in C. Notice also that the loop ends with 6, but the array was declared with a '7'. Count the number of lines of output. How many values did the loop actually print ?