Back to previous page...

The DO UNTIL... ENDDO Construct

There is no DO UNTIL construct in the COBOL language but the functionality of this construct can be achieved by using two PERFORM statements :
       PERFORM PARAG-1.
       PERFORM PARAG-1 UNTIL condition.

Back to Structured Programming Elements...

Back to First Page...