Re: Problem with my split routine I am not understanding
- From: "Donald Fredkin" <drfredkin@xxxxxxxx>
- Date: Thu, 28 Dec 2006 20:44:16 GMT
Jeremy wrote:
The problem is that once the array data is filled, it seems to not
change. Any ideas on what I am doing wrong?
The integer variables bpos, pos and idx are implicitly SAVED because of
their compile time initialization. If you replace their declaration by
the lines
integer :: bpos, pos, idx
bpos = 1; pos = 1; idx = 1
your program will work (after you put in the MODULE and END MODULE
statements.
--
Don Fredkin
drfredkin@xxxxxxxx
.
- Follow-Ups:
- Re: Problem with my split routine I am not understanding
- From: Richard E Maine
- Re: Problem with my split routine I am not understanding
- References:
- Problem with my split routine I am not understanding
- From: Jeremy
- Problem with my split routine I am not understanding
- Prev by Date: How to transfer a file in an array
- Next by Date: Re: How to transfer a file in an array
- Previous by thread: Re: Problem with my split routine I am not understanding
- Next by thread: Re: Problem with my split routine I am not understanding
- Index(es):
Relevant Pages
|