Chapter 5 Quiz Starting Out With C++ 016

Is the following a correct format for the for-loop?

for (initialization; test expression; update)
{
   statement;
   statement;
   .
   .
}

a. true
b. false


1 comment: