Before You Start
Refresher Check-In
So, as a reminder, the sequence is:
- Preprocess — deals with all the
#include
directives to make one big file of C++ source code - Compile — figures out what the program is trying to do and writes assembly code, which is machine instructions in a somewhat human-readable text form
- Assemble — turns the machine instructions into an “object file“, a
.o
file - Link — gathers together all the
.o
files as well as the C++ standard library to make an executable the computer can actually run
Awesome, okay, on to arrays!
(When logged in, completion status appears here.)