Question


The program segment
int counter = 1;
do {
printf("%i ", counter);
} while (++counter <= 10);
will ________.
(a) print the numbers 1 through 11
(b) print the numbers 1 through 10
(c) print the numbers 1 through 9
(d) cause a syntax error

Answer

This answer is hidden. It contains 3 characters.