Consider the code below
program Console2 implicit none integer :: a(10000,10000) # line1 a=1 print *, 'Hello World' end program Console2
My compile enviroment is VS2010+intel Parallel Studio XE 2011+Win7.
the code line1 defined a variable “a" with size 4*10000*10000=400MB, and the program pass the compile and run. I remember i got an error "stack oveflow" when i define a big array before. Why it didn't pop the error this time?



