Chapter 5 Quiz Starting Out With C++ 020

Which of the following is the best answer.  In a for loop, the counter can only be incremented or decremented by 1.

a. the counter can only be counter++ or counter--
b. no, you can do increment/decrement other than by 1.  counter+=2
c. yes



1 comment:

  1. b. no, you can do increment/decrement other than by 1. counter+=2

    ReplyDelete