Does CI point to a const int, or is CI a const pointer that points to an int?
Edit: And also in the same vein, is a "One Eyed One Horned Flying Purple People Eater"
a one-eayed, one-horned, flying puruple monster that eats people, or a one-eyed, one-horned, flying monster that eats purple people?
It's a pointer to a const int. A const pointer to int would be: int* const CI;
The good thing about programming languages is that they're not ambiguous.