We frequently provide code examples during class. These will always be available to you in the following directory in which they are organized by the week they were presented (w01, w02, etc.)
/home/meeden/public/cs35/or
/home/brody/public/cs35/
For example, to copy the week 2 files you would change directories into the location you would like the code to go, and then do:
cp -r /home/meeden/public/cs35/w02 .or
cp -r /home/brody/public/cs35/w02 .The dot at the end of this command indicates that you want the copy to go in the current working directory.
We will be using a free textbook for this course:
Learning how to debug code efficiently is part of this course material. Many of the lab assignments in this course will be more involved than what you have seen in CS21, and debugging will be essential. Some references for debugging tools:
This course provides an introduction to object oriented programming as well as the C++ program language. Each could warrant their own course of study and we highly recommend you study them further. Some references of use: