The following code should output the odd integers from 19 to 1:
```
for (unsigned int x{19}; x >= 1; x += 2) {
cout << x << endl;
}
```
+= should be -=.
You might also like to view...
You have saved a CMYK file from Photoshop with an ICC pro file embedded in it. By default, will InDesign do color manage ment on it to ensure consistent color?
What will be an ideal response?
The exception facility should be used when
a. Some resource is unavailable to the compiler b. A program encounters an error and cannot recover, but needs to shut down gracefully, perhaps saving work.. c. A program requests a resource that is not available. d. Array index value is out-of-bounds e. A programmer calls the wrong function f. A division by zero occurs g. There is a compiler detected error h) A call to operator new fails to allocate memory from free store i) An arithmetic error occurs