Readability:
the ease with which programs can be read and understood
Because ease of
maintenance
is
determined in large part by the readability of programs,
readability
became an important measure of the quality of programs and programming
languages.
![]() |
![]() ![]() |
The more orthogonal, the
fewer exceptions the language rules
require.
That is, the fewer exception makes the language easier
to learn, read and understand.
If there is a Boolean data type,
it will increase the readability.
For example,
sum_is_too_big = 1
sum_is_too_big = true
The struct data type is much easier to pass through a function than several arrays.
Ada, Pascal check data type.
C has no strong type checking. (see Chapter 4)
Out of range subscripts cause errors.