How to display string in the reverse order using occurs
clause?
Answer Posted / fool
both r foolish programmers...heres the working code..
identification division.
program-id pg1.
environment division.
data division.
working-storage section.
01 j pic 99.
01 i pic 99.
01 s1 pic a(15).
01 s2 redefines s1.
02 instr pic a(1) occurs 15 times.
01 s3 pic a(15).
01 s4 redefines s3.
02 outstr pic a(1) occurs 15 times.
procedure division.
p1.
display "Enter the string ".
accept s1.
perform p3 varying i from 15 by -1 until i = 0.
display "Reverse string ".
display s4.
stop run.
p3.
compute j = 15 - i + 1.
move instr(i) to outstr(j).
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
how do you reference the esds vsam file formats from cobol programs
What is the difference between a binary search and a sequential search what are the pertinent cobol?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
How do you reference the following file formats from cobol programs?
How can you get the ksds file records into your cobol program?
What is a scope terminator give example?
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
How arrays can be defined in COBOL?
How do you get the data to code the BMS macro?
How do get the result of your program directly on your pc?
what is the use of outrecord?
Explain what you understand by passing by value.
how do you reference the variable block file formats from cobol programs
I have a File that has duplicate records. I need only those records that occur more than thrice.?