C++17 By Example
This is the code repository for C++17 By Example, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.
About the Book
C++ is a general-purpose programming language built with a bias towards embedded programming and systems programming. Over the years, C++ has evolved and is used to develop software for many different sectors. Given its versatility and robustness, C++is a wonderful language to start your coding journey with. This book covers exciting projects built in C++ that show how to implement the language in different scenarios. While developing these projects, you will not only learn the language constructs but also how you can use C++ to meet your software requirements.
Instructions and Navigation
All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.
All code files are present in their respective folders.
The code will look like the following:
class Person {
public:
Person(string name);
virtual void print();
private:
string m_name;
};
This book is intended for every reader, from the beginner to the more proficient C++ programmer. However, some previous experience with C++ is useful. The examples of this book are developed in Visual Studio and Qt Creator.
Related Products
Suggestions and Feedback
Click here if you have any feedback or suggestions.