fl.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
F2562
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     FORTRAN compilation error F2562
 
     cannot pass CHARACTER*(*) by value
 
     The program tried to pass by value an item of type CHARACTER*(*).
     This is illegal because the length of such items is not known at
     compile time.
 
     Actual arguments with a length of <n> can be passed to CHARACTER*n
     items, and these items can be passed by value, if required.
                                    -♦-