Note about Case Study I
In Case Study I, the constant declarations are declared in the form below:
int const plane_speed = 533;
rather than
const int plane_speed = 533;
Either placement of the const keyword will compile correctly. However, placing the const keyword first is the preferred method, and the method taught in the chapters preceeding the case study.