This program will write 'hello' at the specified position '9' of the file 'test.txt'
program test
open(31,file='test.txt',access='stream')
write(31,pos=9)'hello'
close(31)
end program
Can this position specifier be used to write on terminal?
I want to be able to do something like write(*,pos=9)'hello'