Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!usc!ucsd!chiton!martin From: martin@chiton.ucsd.edu (Martin Olivera) Newsgroups: comp.lang.fortran Subject: Re: Format little problem Keywords: thanx everybody Message-ID: <516@chiton.ucsd.edu> Date: 9 Oct 90 20:32:48 GMT Organization: UCSD - Scripps Inst. of Oceanogr. - MPL Lines: 17 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