Clarifying a fortran implied loop
问题 I used FORTRAN a little, many years ago, and have recently been tasked to maintain an old FORTRAN program (F77). The following code was unfamiliar: READ(FILE_LOG_UNIT, IOSTAT=FILE_STATUS) NUM_WORDS, . ( BUFFER(BIX), BIX=1, NUM_WORDS ) Reviewing some on-line forums revealed that the part that was confusing me, the continuation line, is an implied loop. Since my program is giving me trouble right here, I want to convert this to a conventional DO-loop. Converting it might also help the next poor