Question

What must be the step size of the loop below, to ensure that it repeats exactly 5 times?
for(c=3; c<13; ____)
A) c++;
B) c = c + 2;
C) c = c + 3;
D) c = c + 4;

Answer

This answer is hidden. It contains 1 characters.