Back to first page...

STRUCTURED PROGRAMMING WITH COBOL

Structured programming techniques used in the coding process of any programming have proved to be useful.

If you code your source in a structured way, it will be easier to debug, it will be easier to maintan (make modifications later) and therefore more professional.

There are a few important points to which a programmer has to pay attention, to end up with a "structured program" :

Structured Language Elements in COBOL

As you very well know, the general structured elements in programming languages are :

The COBOL language is equipped with all these constructs; only the SYNTAXes are a little different than the ones that you are familiar with.


Back to first page...