Writing 00 FF via Fortran
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 27 articles for 0.008 sec
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: nospam
Date: Jul 27, 2008 22:27

...It allows you to read or write the records in multiple statements, ...one at the end of the write statement. In your case, the format...256 ends-of-record during the write statement. Advance='no' doesn't ... you did ! Does not work? ! Write(16,'(A1)',advance="no") (achar(... the end and recert. ! Writes out $00 - $FF correctly! do n=0,255 Write(16,'(A1)',advance="no") achar(...
Show full article (2.79Kb) · Show article thread
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: RadSurfer
Date: Jul 27, 2008 21:38

...Value correctly! ! (and absolutely nothing else!) ! Write(16,'(A1)',advance="no") achar(2) ! Writes out $00 - $FF correctly! do n=0...close(unit=16) stop 'AOK' 100 write(*,*) 'ios = ',ios stop 'Open/Access Error... for an important project to write out simple unsigned-char values ... mailto:garylscott@sbcglobal dot net Fortran Library: http://www.fortranlib.com ...
Show full article (1.59Kb) · Show article thread
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: Ron Ford
Date: Aug 1, 2008 20:43

... man page (or the man page for pretty much any other Fortran compiler; although they aren't all identical, there is a ...The file suffixes .f03 and .txt are not normally accepted as Fortran source code. You can talk some compilers into using unusual suffixes,...universal, it is the scheme used by the majority of the Fortran compilers on the planet. Thanks for your response, Richard. I ...
Show full article (2.25Kb) · Show article thread
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: nospam
Date: Aug 1, 2008 19:42

... page (or the man page for pretty much any other Fortran compiler; although they aren't all identical, there is a ... file suffixes .f03 and .txt are not normally accepted as Fortran source code. You can talk some compilers into using unusual suffixes..., it is the scheme used by the majority of the Fortran compilers on the planet. -- Richard Maine | Good judgement comes from...
Show full article (1.87Kb) · Show article thread
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: Ron Ford
Date: Aug 1, 2008 19:21

...access='stream') do i=0,255   write(10) achar(i) end do ...='stream') do i=0,255 write(10) achar(i) end do ...\temp>dump chars.txt 000000 00 01 02 03 04 05 06... fa fb fc fd fe ff 000100 C:\Users\epc\temp>...(1) ep17.f:3.3: write(10) achar(i) 1 Error:...(1) ep17.f:6.3: write(10) achar(i) 1 Error:...(1) ep17.f:6.3: write(10) achar(i) 1 Error:...
Show full article (5.82Kb) · Show article thread
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: e p chandler
Date: Aug 1, 2008 16:24

...='chars.txt',form='unformatted',access='stream') do i=0,255   write(10) achar(i) end do close(10) ...='chars.txt',form='unformatted',access='stream') do i=0,255 write(10) achar(i) end do close(10) end C:\Users... settings. C:\Users\epc\temp>dump chars.txt 000000 00 01 02 03 04 05 06 07 08 09 0a ... f5 f6 f7 f8 f9 fa fb fc fd fe ff 000100 C:\Users\epc\temp> - e
Show full article (2.59Kb) · Show article thread
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: Ron Ford
Date: Aug 1, 2008 16:10

.../O, which is defined to write exactly the items listed and ... through the details of the Fortran run-time I/O implementation?... help. I think reading a Fortran book is far more likely...items: July 31, 2008 1 "Fortran 95/2003 Explained (Numerical Mathematics...10 file actually are. 00 7B FF 01 I was expecting...stream') do i=0,255 write(10) achar(i) end do...
Show full article (3.14Kb) · Show article thread
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: user1
Date: Jul 31, 2008 20:46

...Tracing through the details of the Fortran run-time I/O implementation? ...to help. I think reading a Fortran book is far more likely to...these items: July 31, 2008 1 "Fortran 95/2003 Explained (Numerical Mathematics and...fort.10 file actually are. 00 7B FF 01 Translate these to decimal...open(10,form="unformatted",access="stream") write (10) tr(x) end program ...
Show full article (2.87Kb) · Show article thread
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: e p chandler
Date: Jul 31, 2008 19:09

... I/O, which is defined to write exactly the items listed and ... through the details of the Fortran run-time I/O implementation? ... help. I think reading a Fortran book is far more likely ... items: July 31, 2008 1 "Fortran 95/2003 Explained (Numerical Mathematics ....10 file actually are. 00 7B FF 01 I was expecting ...='stream') do i=0,255 write(10) achar(i) end do ...
Show full article (2.47Kb) · Show article thread
Re: Writing $00-$FF via Fortran     

Group: comp.lang.fortran · Group Profile · Search for Writing 00 FF via Fortran in comp.lang.fortran
Author: Ron Ford
Date: Jul 31, 2008 18:30

... I/O, which is defined to write exactly the items listed and ... through the details of the Fortran run-time I/O implementation? Um.... if the Fortran bit isn't clear enough, looking at ... help. I think reading a Fortran book is far more likely ... items: July 31, 2008 1 "Fortran 95/2003 Explained (Numerical Mathematics ....10 file actually are. 00 7B FF 01 I was expecting ...
Show full article (2.28Kb) · Show article thread
1 · 2 · 3 · next