INPUT # - a file I/O statement that reads data items from a sequential
device or file and assigns them to variables
Syntax
INPUT #filenumber, variablelist
- filenumber is the number of an open sequential file
- variablelist is one or more simple variable names, separated by
commas, that will be assigned values from the file. Make sure
the data type of each variable in the list matches the data type
of the incoming data item.
See Also