CS 3358 (Data Structures and Algorithms) by Lee S. Koh
Answer 1: How to Correct

#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
   const size_t START_VALUE = 10;
   size_t i;

   for (i = 0; i <= START_VALUE; i++)
      cout << (START_VALUE - i) << endl;

   return EXIT_SUCCESS;
}