how array can be declare in cobol?

Answer Posted / vinay gautam

This is a working example of 1D arrey...
in last ex. o posted there was a comment line......


Working-storage section.
77 index1 pic 9 value 1.
01 week value 'montuewedthufrisatsun'.
03 days pic x(3) occurs 7 times indexed by idx.

Procedure division.
perform varying index1 from 1 by 1 until index1 >= 8
display days(Index1)
End-Perform.
stop run.


Regards Vinay Gautam

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is sort?

529


Explain the types of perform?

519


why icetool be used in programmer view?

2134


What are the types of perform?

563


What is comp?

547






What is the actual use of fillers?

496


Define sort?

573


What is redefine?

548


What are fillers?

520


How to update data area in cobol 400 program?

571


How to detect record is locked in cobol/400?

531


What is output procedure?

533


Explain the output procedure?

566


Explain the syntax of sort?

550


Define redefine and its syntax?

533