C++
Pointers, Arrays, and References
In C++, arrays are used to store a fixed-size sequence of elements of the same data type. To crea...
Vectors
Variables in Memory
The computer has finite resources for "remembering" things. So, you can't just keep asking it to ...
RAII and Initializer Lists
Resource Acquisition Is Initialization RAII stands for Resource Acquisition Is Initialization. I...
Makefile
Compiling and Linking Compiling and linking are two critical steps in the process of turning hum...