# CppPrimer **Repository Path**: liuhahahao/CppPrimer ## Basic Information - **Project Name**: CppPrimer - **Description**: :books: C++ Primer 5 exercise answers. - **Primary Language**: C++ - **License**: CC0-1.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2020-03-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ##C++ Primer 5th Answers [![GitHub issues](https://img.shields.io/github/issues/pezy/CppPrimer.svg)](https://github.com/pezy/CppPrimer/issues) [![GitHub license](https://img.shields.io/badge/license-CC0-blue.svg)](https://raw.githubusercontent.com/pezy/Cpp-Primer/master/LICENSE) [![](https://img.shields.io/badge/%E4%B8%AD%E6%96%87-%E8%AE%A8%E8%AE%BA%E5%8C%BA-yellowgreen.svg)](https://github.com/ReadingLab/Discussion-for-Cpp) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/pezy/0.99) ### Notes - Use `GCC 4.9+`, `Clang 3.4+`, `MSVC 14+`, and [others](http://en.cppreference.com/w/cpp/compiler_support). - Use `-std=c++11`(recommend: `-pedantic -Wall`) flag for compiling. - Have you discovered incorrect information? [Submit](https://github.com/pezy/CppPrimer/issues/new). ### Contents - [Chapter 1. Getting Started](ch01/README.md) - Part I: The Basics - [Chapter 2. Variables and Basic Types](ch02/README.md) - [Chapter 3. Strings, Vectors, and Arrays](ch03/README.md) - [Chapter 4. Expressions](ch04/README.md) - [Chapter 5. Statements](ch05/README.md) - [Chapter 6. Functions](ch06/README.md) - [Chapter 7. Classes](ch07/README.md) - Part II: The C++ Library - [Chapter 8. The IO Library](ch08/README.md) - [Chapter 9. Sequential Containers](ch09/README.md) - [Chapter 10. Generic Algorithms](ch10/README.md) - [Chapter 11. Associative Containers](ch11/README.md) - [Chapter 12. Dynamic Memory](ch12/README.md) - Part III: Tools for Class Authors - [Chapter 13. Copy Control](ch13/README.md) - [Chapter 14. Overloaded Operations and Conversions](ch14/README.md) - [Chapter 15. Object-Oriented Programming](ch15) - [Chapter 16. Templates and Generic Programming](ch16) - Part IV: Advanced Topics - [Chapter 17. Specialized Library Facilities](ch17) - [Chapter 18. Tools for Large Programs](ch18) - Chapter 19. Specialized Tools and Techniques