More time is spent reading software than writing it, so software (and most other forms of writing) need to be optimized for readability.
Readability is subjective. There is a term called Cognitive Complexity (not to be confused with Cyclomatic Complexity), used by SonarQube, that tries to objectively measure readability. There is an excellent white paper explaining it here (alt). While that’s a good start, I believe it’s worth discussing other factors affecting readability.
The ISO CPP guidelines have some great recommendations, of which some may be repeated here.
All code is technical debt. More code is typically more debt. Less code is typically less debt. The most readable codebase contains the most code that doesn’t need to be read.
On average, the less code a reader has to read, the easier they will understand a concept. This is one of the tangential benefits of software abstraction layers: you only need to know the abstraction, not the myriad of implementations or implementation details on the other side.
The same applies on a smaller scale.
Writing readable code is important because code is read more often than it is written. The most readable codebases contain code that doesn’t need to be read. This is possible by building on readers’ intuition on how code should work and by structuring and annotating code such that readers only end up reading the parts of the code relevant to them at that specific time.
The skill of writing readable code can be improved by following some of the advice here, as well as by reading other peoples’ code to build intuition on common programming patterns.