The information in this article applies to:
SUMMARYThe following is a sample C and FORTRAN mixed-language program demonstrating how to access external variables from within Microsoft FORTRAN. FORTRAN Code
C Code
MORE INFORMATION
To use global variables exported from another language in FORTRAN, the
EXTERN attribute must be used. EXTERN tells the FORTRAN compiler that
the variable is not local to the FORTRAN subroutine or function.
Variables declared EXTERN will instead be resolved by the linker. You
can use the ALIAS attribute to assign a different name to the imported
variable; in this example, it is required because the underscore
prepended by the C compiler is invalid in the FORTRAN naming
convention.
Additional query words: nofps kbinf 4.10 5.00 5.10
Keywords : |
Last Reviewed: November 1, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |