https://github.com/Mooophy/Cpp-Primer
C++ Primer 5 answers
https://github.com/Mooophy/Cpp-Primer
c-plus-plus
Last synced: about 1 month ago
JSON representation
C++ Primer 5 answers
- Host: GitHub
- URL: https://github.com/Mooophy/Cpp-Primer
- Owner: Mooophy
- License: cc0-1.0
- Created: 2014-05-09T14:43:33.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-06-06T01:59:38.000Z (10 months ago)
- Last Synced: 2024-10-29T11:16:24.463Z (6 months ago)
- Topics: c-plus-plus
- Language: C++
- Homepage:
- Size: 1.58 MB
- Stars: 8,106
- Watchers: 444
- Forks: 2,998
- Open Issues: 199
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - Mooophy/Cpp-Primer - C++ Primer 5 answers (C++)
- StarryDivineSky - Mooophy/Cpp-Primer
README
## C++ Primer 5 Answers(C++11/14)
[](https://github.com/Mooophy/Cpp-Primer/issues)
[](https://raw.githubusercontent.com/Mooophy/Cpp-Primer/master/LICENSE)
[](https://github.com/ReadingLab/Discussion-for-Cpp)
[](http://www.douban.com/group/532124/)### Compilers recommended
* Windows: Visual Studio 2015+
* Linux: g++ 5.0+
```
g++ -std=c++14 some_ex.cpp -o some_ex
```
* Mac: clang++ 3.7+
```
clang++ -std=c++1y some_ex.cpp -o some_ex
```### 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/README.md)
- [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](ch19)