-
Notifications
You must be signed in to change notification settings - Fork 0
Course contents (draft)
J-Donald Tournier edited this page Sep 27, 2024
·
13 revisions
- the command-line
- navigating the filesystem
- invoking the compiler
- using an editor: micro (or notepad++)
- writing our first
hello_world.cpp
- plain old data (POD) types:
bool
,int
,float
,double
- the
std::string
class - command-line arguments
- the
std::vector
class - range-based
for
loop - the
auto
keyword - introducing first project: DNA shotgun sequencing
- file input/output
- the
while
loop - functions