How To move a value to an array using move verb?
Answer Posted / pak
move VALUE to array_name(index/subscript)
where VALUE is the data to be input in array.
if the array is indexed use,index or else subscript
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
) How do u handle errors in BMS macro
What is amode(31)
What is the default value(s) for an initialize and what keyword allows for an override of the default?
Which division and paragraphs are mandatory for a COBOL program?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
Explain the configuration section of a cobol program with examples of syntax.
) how do u code after getting data?
What is difference between static and dynamic call in cobol?
Give some examples of command terminators?
how can i see junk values in dclgen or in hostvariable of comp ?
In COBOL, what is the different between index and subscript?
Difference between array and sub-script ?
Explain how you can characterize tables in cobol?
What is length is cobol?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?