Hi,
I am attaching a simple fortran code
implicit none
integer*8 i
real*8 a(50)
do i=1,100
a(i)=i
enddo
write(*,*)'no error in the program'
stop
end
and I am using composerxe-2011.4.191 compiler. If i compile with gfortran i get the error
Segmentation fault
but the ifort does not give me error.
What I should do to memrory overflow error ?


