===========
C++ links
===========
Links from `reddit's cpp channel `_:
- Get started: The `C++ Standard Home `_ has a
nice `*get started* `_ page.
- Reference: `cpp reference (cppreference.com) `_
- `The Definitive C++ Book Guide and List `_ (stackoverflow dot com)
Allocation of a std::vector
---------------------------
::
vector vec // vec allocated in the stack, elements in the free store (heap)
vector *vect = new vector // allocated in the heap
- Conference CPP Now http://cppnow.org/
* `Effective cmake talk by Daniel Pfeifer (2017) `_
Questions and answers
---------------------
`Why should I use a pointer rather than the object itself? `_
Captured from the `top posts of a high reputation user `_ in stack overflow.
Standards
---------
`JTC1/SC22/WG21 - The C++ Standards Committee - ISOCPP `_
github `repository `_, including library working group `issues repository `_