C++ Best Practices + 7 Puzzler Books
$70.92
Bought separately
$29.99
Bundle Price

C++ Best Practices + 7 Puzzler Books

About the Bundle

  • Share this bundle
  • Categories

    • C and C++
    • Computers and Programming
    • Games

About the Books

C++ Best Practices

45ish Simple Rules with Specific Action Items for Better C++
  • 5,425

    Readers

  • 146

    Pages

  • 15,431

    Words

  • 100%

    Complete

  • PDF

  • EPUB

  • WEB

Note that this book is also available on Amazon in both color and black and white editions if you prefer a printed version.

As a C++ developer and trainer for 20 years, I have learned that there are many common mistakes that C++ developers of all experience levels make. This book distills that experience down into the most important things to address to make your code faster, easier to maintain, and more portable.

Most sections have one or more exercises that help you apply what is discussed in a practical way in the code you are currently working on

This book is intentionally concise! Expect short sections for each item! I use as few words as possible to get across the point and get you applying what you learned to your code.

If you follow me and watch all of my talks this book will present little new information to you. Why should you buy it then? Because I've consolidated the most important items and given you exercises to apply the rules in your code.

Adam
Matthew

2 reader testimonials

Object Lifetime Puzzlers Book 1

128 Fun Puzzles
  • 1,474

    Readers

  • 100%

    Complete

  • PDF

  • EPUB

  • WEB

Also available in print: https://amzn.to/3F724ig

A book of puzzles that should be fun for anyone, but actually educational for people interested in C++.

The solution to every puzzle is a C++ related term or phrase. If you don't know what the solution means, you can search and learn something new.

void run() {
  {
    static S object_1("t", "t");
  }
  S object_2("i", "e");
  static S object_3("m", "_");
}

// Answer (6):// __ __ __ __ __ __

In this puzzle world each object says its first name when its lifetime begins and its last name when the object's lifetime ends. It's just that simple.

The challenge and fun is in keeping track of what order objects' lifetimes begin, and knowing what order they must end in.

Each section has a description of the new concept introduced, and the challenges are increased at a leisurely pace.

Object Lifetime Puzzlers Book 2

128 Fun Puzzles
  • 445

    Readers

  • 100%

    Complete

  • PDF

  • EPUB

  • WEB

A book of puzzles that should be fun for anyone, but actually educational for people interested in C++.

Book 2 now has missing object puzzles!

The solution to every puzzle is a C++ related term or phrase. If you don't know what the solution means, you can search and learn something new.

void run() {  
  {
    static S object_1("t", "t");
  }
  S object_2("i", "e");
  static S object_3("m", "_");
}
// Answer (6):
// __ __ __ __ __ __

In this puzzle world each object says its first name when its lifetime begins and its last name when the object's lifetime ends. It's just that simple.

The challenge and fun is in keeping track of what order objects' lifetimes begin, and knowing what order they must end in.

Each section has a description of the new concept introduced, and the challenges are increased at a leisurely pace.

Object Lifetime Puzzlers Book 3

128 Fun Puzzles
  • 100%

    Complete

  • PDF

  • EPUB

  • WEB

A book of puzzles that should be fun for anyone, but actually educational for people interested in C++.

Book 3 now has mixed up formatting!

The solution to every puzzle is a C++ related term or phrase. If you don't know what the solution means, you can search and learn something new.

void run() {  
  {
    static S object_1("t", "t");
  }
  S object_2("i", "e");
  static S object_3("m", "_");
}
// Answer (6):
// __ __ __ __ __ __

In this puzzle world each object says its first name when its lifetime begins and its last name when the object's lifetime ends. It's just that simple.

The challenge and fun is in keeping track of what order objects' lifetimes begin, and knowing what order they must end in.

Each section has a description of the new concept introduced, and the challenges are increased at a leisurely pace.

Copy and Reference Puzzlers Book 1

128 FUN Puzzles
  • 612

    Readers

  • 100%

    Complete

  • PDF

  • EPUB

  • WEB

128 FUN Puzzles of Increasing Difficulty Where You Must Ask: Was that a copy, or was it a reference, and who last changed that value?

Example puzzle:

void run() {
  char char_1{'t'};
  char_1 = 'm';
  auto &char_3 = char_1;
  char_1 = 'u';
  char char_5{'o'};
  char_1 = 'c';
  auto &char_7 = char_3;
  char char_8{'l'};
  auto &char_9 = char_1;
  char_8 = 'k';
  auto &char_11 = char_7;
  char char_12{'l'};
  print("{}{}{}{}{}", char_1, char_12, char_5, char_7, char_8);
}
Answer (5): __ __ __ __ __

What is printed?

Copy and Reference Puzzlers Book 2

128 FUN Puzzles
  • 421

    Readers

  • 100%

    Complete

  • PDF

  • EPUB

  • WEB

128 FUN Puzzles of Increasing Difficulty Where You Must Ask: Was that a copy, or was it a reference, and who last changed that value?

Book 2 now has `std::swap` puzzles!

Example puzzle:

void run() {
  char char_1{'t'};
  char_1 = 'm';
  auto &char_3 = char_1;
  char_1 = 'u';
  char char_5{'o'};
  char_1 = 'c';
  auto &char_7 = char_3;
  char char_8{'l'};
  auto &char_9 = char_1;
  char_8 = 'k';
  auto &char_11 = char_7;
  char char_12{'l'};
  print("{}{}{}{}{}", char_1, char_12, char_5, char_7, char_8);
}
// Answer (5): __ __ __ __ __

What is printed?

Copy and Reference Puzzlers Book 3

128 FUN Puzzles
  • 100%

    Complete

  • PDF

  • EPUB

  • WEB

128 FUN Puzzles of Increasing Difficulty Where You Must Ask: Was that a copy, or was it a reference, and who last changed that value?

Book 3 now has `std::exchange` puzzles!

Example puzzle:

void run() {
  char char_1{'t'};
  char_1 = 'm';
  auto &char_3 = char_1;
  char_1 = 'u';
  char char_5{'o'};
  char_1 = 'c';
  auto &char_7 = char_3;
  char char_8{'l'};
  auto &char_9 = char_1;
  char_8 = 'k';
  auto &char_11 = char_7;
  char char_12{'l'};
  print("{}{}{}{}{}", char_1, char_12, char_5, char_7, char_8);
}
// Answer (5): __ __ __ __ __

What is printed?

Opcode Puzzlers Book 1

  • 470

    Readers

  • 100%

    Complete

  • PDF

  • EPUB

  • WEB

This unique puzzle book of 128 FUN puzzles has you following

operations performed in a simulated CPU-like environment.

The puzzles in this book slowly build in complexity as new concepts

are introduced and the size of the puzzle increases.

If you are a programmer, you might get a better feel for how your

computer works. If not, then you'll just have FUN!

void run() {
  Machine<6> machine{{78, 176, 98, 184, 1, 218}};
  mov(machine, 4_address, 1_address);
  dec(machine, 0_address);
  mov(machine, 3_address, 0_address);
  inc(machine, 5_address);
  dec(machine, 1_address);
  inc(machine, 1_address); print(machine);
}

// 16=w 17=v 77=i 98=l 128=i 175=l
// 176=n 219=e 221=k

// Answer (6): __ __ __ __ __ __

The Leanpub 60 Day 100% Happiness Guarantee

Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.

Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.

You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!

So, there's no reason not to click the Add to Cart button, is there?

See full terms...

80% Royalties. Earn $16 on a $20 book.

We pay 80% royalties. That's not a typo: you earn $16 on a $20 sale. If we sell 5000 non-refunded copies of your book or course for $20, you'll earn $80,000.

(Yes, some authors have already earned much more than that on Leanpub.)

In fact, authors have earnedover $13 millionwriting, publishing and selling on Leanpub.

Learn more about writing on Leanpub

Free Updates. DRM Free.

If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).

Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.

Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.

Learn more about Leanpub's ebook formats and where to read them

Write and Publish on Leanpub

You can use Leanpub to easily write, publish and sell in-progress and completed ebooks and online courses!

Leanpub is a powerful platform for serious authors, combining a simple, elegant writing and publishing workflow with a store focused on selling in-progress ebooks.

Leanpub is a magical typewriter for authors: just write in plain text, and to publish your ebook, just click a button. (Or, if you are producing your ebook your own way, you can even upload your own PDF and/or EPUB files and then publish with one click!) It really is that easy.

Learn more about writing on Leanpub