22 Jan 2014 9:25
#13598
Is it possible to assign a 4 byte real to a 8 byte real.
That is:
subroutine x (my_array_4)
real*4 my_array_4(512)
real*8 my_array_8(512)
do i =1,512
my_array_8(i)=my_array_4(i)
enddo
Is the above correct? Christy