Intel® Fortran Compiler

Developer Guide and Reference

ID 767251
Date 3/31/2025
Public
Document Table of Contents

I/O Control List

The Input/Output (I/O) control list specifies one or more of the following:

  • The I/O unit to act upon ([UNIT=]io-unit)

    This specifier must be present; the rest are optional.

The following table summarizes details about the I/O control list specifiers and it contains links to their descriptions:

Specifier

Values

Function

ADVANCE

'YES'

'NO'

Determines whether non-advancing or advancing I/O occurs.

ASYNCHRONOUS

'YES'

'NO'

Determines whether asynchronous I/O occurs.

BLANK

'NULL'

'ZERO

Determines blank interpretation.

DECIMAL

'COMMA'

'POINT'

Determines decimal symbol interpretation.

DELIM

'APOSTROPHE'

'QUOTE'

'NONE'

Determines delimiters for character constants.

No control specifier can appear more than once, and the list must not contain both a format specifier and namelist group name specifier.

Control specifiers can take any of the following forms:

  • Keyword form

    When the keyword form (for example, UNIT=io-unit) is used for all control-list specifiers in an I/O statement, the specifiers can appear in any order.

  • Nonkeyword form

    When the nonkeyword form (for example, io-unit) is used for all control-list specifiers in an I/O statement, the io-unit specifier must be the first item in the control list. If a format specifier or namelist group name specifier is used, it must immediately follow the io-unit specifier.

  • Mixed form

    When a mix of keyword and nonkeyword forms is used for control-list specifiers in an I/O statement, the nonkeyword values must appear first. Once a keyword form of a specifier is used, all specifiers to the right must also be keyword forms.