Re: F77 IO, multiple outputs per line





On Oct 29, 9:24 am, David Rowell <djrpub...@xxxxxxxxxx> wrote:
Don't know if this is applicable to your compiler but g77 has an
extension such that a $ at the end of the FORMAT statement suppresses
the EOL sequence.

Dave Rowell

using
[code]
...
write(*,100) A(i,j), '&'
...
100 format(E8.3,A,$)
[\code]

Works for me, (as far as the EOL is concerned) however, the '&' becomes
******** in the output... According to the tutorial I am following at
http://gershwin.ens.fr/vdaniel/Doc-Locale/Langages-Program-Scientific/Fortran/Tutorial/format.htm

A should be the proper format for string output... is there a better
reference I could be using on these format characters? I find this
tutorial only marginally helpful.

Thanks.

.