You frequently see the null character written as
\0
in string-manipulation programs.
By using \0
instead of 0
identifies the places where 0
is
used as the special null character, rather than as an ordinary integer,
you increase program clarity.