diff options
author | James <31216671+JamesC01@users.noreply.github.com> | 2021-11-01 21:24:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-01 22:24:35 +0100 |
commit | 3cdecb5941f6f06bc9d942641622614359bf6980 (patch) | |
tree | 1eeba58fd273f887ecdd0583a41303b573c1c98d | |
parent | c33c369826d11bd8c90f78ac58c1819fe99b8562 (diff) |
Add learncpp.com to further reading (#4237)
I've been learning from this site, and it seems good, and the general consensus online is that it's one of the better online tutorials/books for learning C++.
-rw-r--r-- | c++.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/c++.html.markdown b/c++.html.markdown index 6e94e03e..4399d946 100644 --- a/c++.html.markdown +++ b/c++.html.markdown @@ -1196,5 +1196,6 @@ compl 4 // Performs a bitwise not Further Reading: * An up-to-date language reference can be found at [CPP Reference](http://cppreference.com/w/cpp). -* Additional resources may be found at [CPlusPlus](http://cplusplus.com). +* A tutorial for beginners or experts, covering many modern features and good practices: [LearnCpp.com](https://www.learncpp.com/) * A tutorial covering basics of language and setting up coding environment is available at [TheChernoProject - C++](https://www.youtube.com/playlist?list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb). +* Additional resources may be found at [CPlusPlus](http://cplusplus.com). |