In Fortran, is the PARAMETER attribute set at runtime or compilation time? I was wondering if I can pass in the size the of the array at run time and have this
PARAMETER
You need dynamic allocation if the size of your array is to be defined as runtime. All parameter (constants) must be defined as compiling time.