~ Primer!

The following site contains my notes from the text "C++ Primer," by Barbara E. Moo, Josée Lajoie, and Stanley B. Lippman. Furthermore, I intend to use this site to collect tidbits, tips, and direct summaries which I believe will expedite the learning process of a reader who might intend to use the notes here for revision purposes. I may not have left much explanation on what type of code I am writing, so essentially, this site serves as an encyclopedia for revision of C++ under its main objective and not a new learning place.

Resources

Listed below are some resources apart from the book that you would like to consider.

This is a playbook consisting of code:

#include <iostream>

int main() {
    std::cout << "Hello, world!\n";
    return 0;
}

This will have some hidden code:

#include <iostream>

int main() {
    std::cout << "Focus on this line\n";  // reader sees this
}