Question

The for statement header
for (i = 1; i < 100; ++i)
performs the body of the loop for
a) values of the control variable from 1 to 100 in increments of 1.
b) values of the control variable from 1 to 99 in increments of 1.
c) values of the control variable from 0 to 100 in increments of 1.
d) values of the control variable from 0 to 99 in increments of 1.

Answer

This answer is hidden. It contains 3 characters.