Related questions
Reading a string with spaces in Fortran
Using read(asterisk, asterisk) in Fortran doesn't seem to work if the string to be read from the user contains spaces.
Consider the following code:
character(Len = 1000) :: input = ' '
read(*,*) input
If the user enters the string "Hello, my …
Opening Binary Files in Fortran: Status, Form, Access
I have been working with Fortran for years, but the file I/O is still hazy to me. My understanding of status, form, access, recl is limited, because I only needed certain use-cases in grad school.
I know that Fortran …
defining path for file in FORTRAN
In bash I could write a simple script like below; to read the content of a file in the folder as I define the path for the file using environment variable "fileplace"
#!/bin/bash
fileplace="/home/vijay/data1/process-folder1/"
cat $…