Indexes vs Subscripts use in Cobol Program
Using indexes to address a table is more efficient than using subscripts since the index already contains the displacement from the start of the table and does not have to be calculated at run time. Subscripts, on the other hand, contain an occurrence number that must be converted to a displacement value at run time […]
Indexes vs Subscripts use in Cobol Program Read More »