Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Run error:

fortran_abc
Beginner
411 Views
Hi I've met a run problem with a fortran program. The error message is :

"forrt1: severe (408): fort: (3): Subscript #2 of the array ELINCO has a value 0 which is less than the lower bound of 1"

Does anybody know what this means and what to check to debug it?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
411 Views
You have an array reference, such as ELINCO(I,J), where J has the value 0, but the array is declared with that lower bound of 1. Figure out why the value of the second subscript is zero and fix it.
0 Kudos
Reply