C++ Brain Teasers

Exercise Your Mind

by: Anders Schau Knatten

Published 2024-06-10
Internal code akbrain
Print status In Print
Pages 138
User level Intermediate
Keywords c++, programming exercises, codekata, puzzles
Related titles

all brain teasers books

Modern C++ Programming with Test-Driven Development by Jeff Langr

ISBN 9798888650516
Other ISBN Channel epub: 9798888650998
Channel PDF: 9798888651001
Safari: 9798888650981
BISACs COM051070
COM051300
COM051300

Highlight

== C++ == is famous for getting all the default behaviors wrong and for sometimes making demons fly out of your nose. Through 25 puzzles, from the useful to the outright weird, we explore some of == C++ ==’s most interesting quirks. How does initialization actually work? Do temporaries even exist? Why is `!!"" ` a valid expression in == C+ == ? As you work through each puzzle, you will peel off some of the layers of complexity of == C++ == , getting a fundamental understanding of how the language works. This will help you write better code and recognize issues more easily while debugging.

Description

Each puzzle in the book is a complete, seemingly simple == C++ == program, but can you figure out the output for each, or will the answers stump you? Most of the programs compile and have deterministic, though sometimes surprising, output. Some might, however, have undefined behavior, where anything can happen, including making demons fly out of your nose! Yet others might have unspecified behavior with output that is not completely deterministic; we just know nothing as bad as nasal demons will happen.

All puzzles are accompanied by detailed discussions, taking a look under the hood at what exactly is going on to help you understand more about == C++ == ’s unexpected behaviors, as well as fundamental concepts like initialization, overload resolution, and implicit conversions. For the non-deterministic cases, we’ll explore some typical behaviors one can expect to see in practice, what causes them, and why they shouldn’t be relied on.

After working through the book, you’ll have tools and techniques to help you write better and safer code, and a better understanding of the fundamentals of the language, the background for some of == C++ ==’s apparent weirdness, and a better feel for identifying bugs and unsafe code in your own programs.

Contents and Extracts