CS 150

Some notes for CS 150.

Don't forget to initialize your looping variable! This may not do what you want:

for (int i; i < 10; i++)

Instead, you need to write:

for (int i = 0; i < 10; i++)

Or if you prefer the brace init syntax:

for (int i{0}; i < 10; i++)