Table of Contents
- Introduction
- Programs
- Hello, World!
- Functions
- Types, Variables and Arithmetic
- Scope and Lifetime
- Constants
- Pointers, Arrays and References
- Tests
Introduction
- Q/A Format for “A Tour of C++” by Bjarne Stroustrup.
[Quizlet Coming Soon]
[Anki Coming Soon]
Programs
- C++ is a compiled language. For a program to run, its source text has to be processed by a compiler, producing ____ files, which are combined by a ____ yielding an executable program.
- What does it mean when we say an executable program is not portable in C++?
- What are the kinds of C++ entities defined by the ISO (International Organization for Standardization)
- C++ is a ‘statically typed language’. What does this mean?
Hello, World!