I'm about to convert a Fortran77 program to C and have encounter a code snippet something like this:
DIMENSION TMP(5)
DO 10 K=1, 5
10 TMP(K)=0
CALL FUNC
20 CONTINUE
STOP
END
SUBROUTINE FUNC
WRITE (*,*)'Just a test'
RETURN
END
Whats the deal with that continue?.. There is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.