I have a question regarding debugging a fortran file. So I declared this with d (*) automatically. However, during debugging and control of the array, it shows only the first number of the corresponding array, and not 60 others. (I use the Fortran 95 compiler and Visual Studio 2010)
How can I view all array variables?
Ok, here is a sample code:
ia is a variable integer from the main procedure, depending on some input parameters.
subroutine abc(ia,a,b,c) dimension d(*) a = d(ia+1) b = d(ia+2) c = d(ia+3) return end
However, for debugging it is useful to know the extremities d (*)
source share