01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING".
01 NAME2 PIC X(13).
now I want to display the value of NAME1 in reverse order
i.e value should be displayed as "GNIMMARGORP LOBOC"
HOW can I do that ??? please let me know if any one knows
it.
Answer Posted / elizabeth
Using reference modification each character can be
extracted and placed in the next string in any order
Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
I have a File that has duplicate records. I need only those records that occur more than thrice.?
What is length is cobol?
Write the code implementing the perform … varying.
In COBOL, what is the different between index and subscript?
What is the usage of comp fields in cobol?
) how do u code after getting data?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
Which is not true about evaluate statement
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
How do you reference the following file formats from cobol programs?
What is the compute verb? How is it used?
Whats the difference between search & search ALL?
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 ?
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?