APAC logo and link to APAC home page APAC National Facility Userguide Intel Fortran Reference (pdf) <- Prev -- Index -- Next ->

Arrays

Fortran90 introduced the notion of array and array syntax, eg.

program main
    real, dimension(100,100) :: a, b

    a = 1.0
    b = 2.0
    a = a+b*3.0+4.0
end program main

APAC NATIONAL FACILITY <- Prev -- Index -- Next ->