|
Do you think that the test part of a A good answer might be:Yes. (Actually, a good answer would be "sounds dangerous".) |
Omitting the Test
When the test part of a is the same as:for ( initialize ; ; change ) loopBody ; This is mostly for compatibility with the language "C" and should probably not be done in newly written programs.for ( initialize ; true ; change ) loopBody ; |
QUESTION 14:
Could all three parts be omitted from a |