ex: ```fortran PARAMETER ( NTABIN = 21 ) INTEGER TABIN(NTABIN) ``` This creates a constant `NTABIN` And declares an array `TABIN` of size `NTABIN` There should be a read access for `NTABIN` on the second line
ex:
This creates a constant
NTABINAnd declares an array
TABINof sizeNTABINThere should be a read access for
NTABINon the second line