Into Programming

This chapter in the book mainly discusses common programming stuff beginners should be well aware of and versed with when starting out. The major things covered in this chapter include:

Some important concepts I grabbed from this chapter which I have not encountered before include:

const CONSTANT_NAME = value;

After the intial declaration of the constant, it can not be changed anywhere else within the program.

for (init; condition; update) {

  . . .

}