The ASCII strings are stored as Fortran strings. A Fortran string is a fixed size array
of 8-bit ASCII characters that is padded with spaces to fit the alloted size. This
differs from C strings which are null-terminated and Java strings which are
variable-sized and use 16-bit UNICODE characters. |