gistlib
The loop iterates from 1 to 10 with a step of 2. Therefore, the loop will execute 5 times.
The loop variable c will take the following values: 1, 3, 5, 7, and 9.
c
So the output of the code will be: 1 3 5 7 9
1 3 5 7 9
gistlibby LogSnag