[comp.lang.fortran] Format little problem

martin@chiton.ucsd.edu (Martin Olivera) (10/09/90)

Is it possible to do a carriage return (hex D) WITHOUT a line feed (hex A) in 
FORTRAN?.

Thanx.

Martin

martin@chiton.ucsd.edu (Martin Olivera) (10/10/90)

My original posting was:

>Is it possible to do a carriage return (hex D) WITHOUT a line feed (hex A) in 
>FORTRAN?.

I'd like to thank everyone that responded . I tried your ideas on a
first arrival basis. This one, sent by sukenick@sci.ccny.cuny.edu worked for me:

	character*1 cr
c
	cr = char(13)
	write(*,1000) i,j,k, cr
1000	format(1x,3i8,a1,$)

Some of the others may work and I intend to try them for completeness.

Martin