
C++ Fundamentals
Hit the ground running with C++, the language that supports tech giants globally
- 350 pages
- English
- ePUB (mobile friendly)
- Available on iOS & Android
C++ Fundamentals
Hit the ground running with C++, the language that supports tech giants globally
About this book
Write high-level abstractions while retaining full control of the hardware, performances, and maintainability.
Key Features
- Transform your ideas into modern C++ code, with both C++11 and C++17
- Explore best practices for creating high-performance solutions
- Understand C++ basics and work with concrete real-world examples
Book Description
C++ Fundamentals begins by introducing you to the C++ compilation model and syntax. You will then study data types, variable declaration, scope, and control flow statements. With the help of this book, you'll be able to compile fully working C++ code and understand how variables, references, and pointers can be used to manipulate the state of the program. Next, you will explore functions and classes — the features that C++ offers to organize a program — and use them to solve more complex problems. You will also understand common pitfalls and modern best practices, especially the ones that diverge from the C++98 guidelines.
As you advance through the chapters, you'll study the advantages of generic programming and write your own templates to make generic algorithms that work with any type. This C++ book will guide you in fully exploiting standard containers and algorithms, understanding how to pick the appropriate one for each problem.
By the end of this book, you will not only be able to write efficient code but also be equipped to improve the readability, performance, and maintainability of your programs.
What you will learn
- C++ compilation model
- Apply best practices for writing functions and classes
- Write safe, generic, and efficient code with templates
- Explore the containers that the C++ standard offers
- Discover the new features introduced with C++11, C++14, and C++17
- Get to grips with the core language features of C++
- Solve complex problems using object-oriented programming in C++
Who this book is for
If you're a developer looking to learn a new powerful language or are familiar with C++ but want to update your knowledge with modern paradigms of C++11, C++14, and C++17, this book is for you. To easily understand the concepts in the book, you must be familiar with the basics of programming.
Tools to learn more effectively

Saving Books

Keyword Search

Annotating Text

Listen to it instead
Information
Chapter 1
Getting Started
Lesson Objectives
- Explain the C++ compilation model
- Execute the main() function
- Illustrate the declaration and definition of variables
- Determine built-in arithmetic types, references, and pointers
- Explain the scope of a variable
- Use control flow statements
- Define and utilize arrays
Introduction
The C++ Compilation Model
- Preprocessing the source code.
- Compiling the source code.
- Assembling the compiled file.
- Linking the object code file to create an executable file.

Figure 1.1: C++ compilation of the HelloUniverse file
- When the C++ preprocessor encounters the #include <file> directive, it replaces it with the content of the file creating an expanded source code file.
- Then, this expanded source code file is compiled into an assembly language for the platform.
- The assembler converts the file that's generated by the compiler into the object code file.
- This object code file is linked together with the object code files for any library functions to produce an executable file.
Difference Between Header and Source Files
- It was added the first time because we included logger.hpp in the main.cpp file
- It was added the second time because we included calculator.hpp, which then includes logger.hpp
Table of contents
- Preface
- Chapter 1
- Getting Started
- Chapter 2
- Functions
- Chapter 3
- Classes
- Chapter 4
- Generic Programming and Templates
- Chapter 5
- Standard Library Containers and Algorithms
- Chapter 6
- Object-Oriented Programming
- Appendix
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app