CSSE2010
Resources
For C
For C++
The actual C++ community at large has largely said that there's basically three "intro" or "learning" books:
- Principles and Practice Using C++ (the "College" beginner)
- C++ Primer (the I've learned to program in X already beginner) and lastly
- Accelerated C++ (the actual professional programmer and my boss said to learn C++)
Source
Notes
#include <stdbool.h>
- Keeping track of multiple variables is costly (HRM 22). See if you can rederive lost data when overwriting.
- Typedef structures
typedef struct {int data1;char data2;} newtype;