Answer Posted / sivakumar s
Array can be declared in cobol using the OCCURS clause.
Syntax is,
For one dimensional array,
01 Arrays.
05 Var1 PIC X(10) Occurs 10 times.
For two dimensional array,
01 Arrays.
03 AAA Occurs 10 times
05 BBB Occurs 10 times
07 Value PIC 9(3).
| Is This Answer Correct ? | 77 Yes | 14 No |
Post New Answer View All Answers
Explain the types of perform?
Explain how to update data area in cobol 400 program?
Define sort?
why icetool be used in programmer view?
Define perform?
Explain how to detect record is locked in cobol/400? What is the solution for that?
seqence numbers in cobol
Define redefine?
Explain the difference between search and searchall?
Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?
What is perform?
What is input procedure?
What is redefine?
What is comp?
What are fillers? What is the actual use of fillers? With mall/simple example?