Can anyone please give the example of Inline Perform.
Answer Posted / abhishek vashishta
PERFORM UNTIL WS-EXIT = 'Y'
DISPLAY 'ENTER UR NAME '
ACCEPT WS-NAME
DISPLAY 'WANT TO EXIT'
ACCEPT WS-EXIT
END-PERFORM.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between external and global variables in COBOL?
How do you reference the fixed block file formats from cobol programs
What is the difference between Global and External Variables?
Have you used comp and comp-3 in your project? And how?
What are the cobol coding sheets?
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
what is search and searchall?what is the diffrence between them?give an best example?
What is the utilization of copybook in cobol?
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
What is the difference between PIC 9.99 and 9v99 in COBOL?
What is the difference between binary search and sequential search?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
how do you reference the ksds vsam file formats from cobol programs
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?