How do define Dymanic array in cobol how do u define single
demensional arry and multidymensional arry in ur cobol.
Answer Posted / mr.perfect
dynamic array is used to accept the value based on the
random value
dynamic array-
01 yy grp.
05 month pic x(4) occurs 10 times depending upon IDX
IDX is variable name
01 idx pic x(1).
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how do you reference the esds vsam file formats from cobol programs
What is Pic 9v99 Indicates in COBOL?
What are the cobol coding sheets?
What are the pertinent COBOL
how do you reference the ksds vsam file formats from cobol programs
What is length is cobol?
what is the difference between COBOL2 AND COBOL390?
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
Difference between cobol and cobol-ii?
What are 77 levels used for?
How to remove 2 duplicate records and copy only one using job control language?
i want a program using by if, evaluate , string, unstring, perform, occurs?
how do you reference the variable block file formats from cobol programs
HOw can I get the negative sign while deduct high value from low value
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?