Week 00: Intro do C++

SLOs for Week 00

At the end of this unit, students will be able to…

  • describe the process of compilation of a program.
  • perform basic I/O using cout and cin, with << and >>.
  • create variables of various data types and initialize them.
  • articulate the importance of initializing variables.
  • write values in decimal, hexadecimal, and binary, and convert between them.
  • create constant values using the const keyword.
  • declare array variables and initialize them.
  • identify the size of the different data types.
  • create and use pointers.
  • use the dereferencing and address-of operators on pointer variables.

Slides, videos, and application exercises

Lab 00: Getting Started

Project 00: Exploring Types