Topic: declaration of size of arrays in parameter satement
program matrix
implicit none
INTEGER,parameter :: i4=SELECTED_INT_KIND(9)
INTEGER,parameter :: dp=SELECTED_REAL_KIND(15,307)
INTEGER(KIND=I4) :: I,J
INTEGER(KIND=i4),parameter :: m=3_I4,n=2_i4
REAL(KIND=dp) :: a(m,n),b(n),c(m),d(m),e(n)
With respect to the above 'code' , should I always put the 'kind' when I assign values for the 'rows' and 'columns' ?..... I am not that certain of whether or not it is appropriate . .