Is it possible to provide a character variable to the FMT qualifier in a WRITE statement so that the default format (i.e., list-directed) output is used? To illustrate, I want to perform:
Write (Unit=*, Fmt=*) i
but as something like the following (which generates and error message):
cfmt = '*'
Write (Unit=*, Fmt=cfmt) i
The following also generates an error:
cfmt = '(*)'