- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Kindly help me in understanding this error, what could be the possible cause?
%FOR-E-ADJARRDIM, adjustable array dimension error
%TRACE-E-TRACEBACK, symbolic stack dump follows
It is occuring at line 173, a subroutine call.
Thanks
Naveed
%FOR-E-ADJARRDIM, adjustable array dimension error
%TRACE-E-TRACEBACK, symbolic stack dump follows
It is occuring at line 173, a subroutine call.
Thanks
Naveed
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It basically means the dimensions on the subroutine's adjustable array doesn't makes sense, for example if you
integer array(10), size
call sub (array, size)
and sub is declared as
subroutine sub (array, size)
integer array(size), size
...
If you do something like set size to zero or something huge you might see this error.
James
integer array(10), size
call sub (array, size)
and sub is declared as
subroutine sub (array, size)
integer array(size), size
...
If you do something like set size to zero or something huge you might see this error.
James

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page