How do define Dymanic array in cobol how do u define single
demensional arry and multidymensional arry in ur cobol.
Answer Posted / mahesh
single dimensional array-
01 year grp.
05 month pic 9(2) occurs 12times.
multi dimensional array
01 year grp.
05 month occurs 12times.
05 weak occurs 4 times.
05 days pic x(4) occurs 7 times.
dynamic array-
01 yy grp.
05 month pic x(4) occurs 10-12 times depending upon 'yygrp'.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
how do you reference the fixed unblock file formats from cobol programs
How do define dynamic array in cobol.
) what is the difference between AID and HANDLE AID?
Hi pls anybody tell me about " ANALYSIS DOCUMENT PREPARATION AND ESTIMATION OF TASK " (in real time project)."I want to update a sequential file in my project" for that purpose i need both structures i mean analysis document and estimation of task.
i want a program using by if, evaluate , string, unstring, perform, occurs?
What are various search techniques in cobol? Explain.
How you can characterize tables in cobol?
How you can read the file from bottom?
Name the divisions, which are available in a cobol program?
Can you please let me know the centre name of INS certification in Kolkata.
How to remove 2 duplicate records and copy only one using job control language?
What is a SSRANGE and NOSSRANGE?
how do you reference the esds vsam file formats from cobol programs
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
how do you define single dimensional array and multidimensional array in your cobol?