I have a old fortran code that I try to update. The arrays were given in subroutines with the old style:
double precison A(*)
I wanted to changed it to f90 norm:
double precison A(:)
But I get seg fault by doing so. In the main the array isdeclared as:
double precision:: A(size)
why can't I change the way of declaring the arr`y in the subroutine?
Thanks