The following program demonstrations non-standard ways in which character strings can be declared: --------- character*16 str*8 ! overrides len=16 character str_array*16(8) ! array length is 8, string length is 16 end ---------