Questions
What does
std::mean? The standard library names I use are inside thestdnamespace. Keep writingstd::cout, notusing namespace std;.What does
<<mean withstd::cout? It sends data into the output stream. The arrow direction helps me remember the flow.What is abstraction? Using something through a simpler interface without caring about the implementation for now.
What is a translation unit? A
.cppfile after preprocessing. This matters when I get confused by includes, headers, and linker errors.