Tagged Questions
2
votes
1answer
64 views
Arrays of pointers
I am trying to implement an array of pointers, so that I can loop over the elements. However I am not sure how to do this correctly:
TYPE(domain),POINTER :: d01,d02,d03
...
1
vote
1answer
370 views
pointer as a dummy argument
I am somewhat puzzled by the following program
module test
implicit none
type TestType
integer :: i
end type
contains
subroutine foo(test)
type (TestType), intent(out) :: ...
1
vote
1answer
1k views
Fortran pointer functions: why does this code's behavior depend on the order of function calls?
Context
The toy Fortran code posted below calls two pointer functions. That is, both functions return a pointer. In fact, they're both array pointers. They both attempt to do the same thing, which ...