How do define dynamic array in cobol.
No Answer is Posted For this Question
Be the First to Post Answer
wht is the use of evalute verb ? how do u declare recfm in cobol and jcl ?
Write a program to concert an Indexed file into Sequential file?
how can we apply for HSBC exam(Mainframe) in India??? i went to their site and was told to submit my CV ,. etc..( totally confusing...)
What is the difference between next sentence and continue in cobol programing language?
How to pass return codes from cobol to jcl?
) How do u handle errors in BMS macro
01 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy
We know that size of redefine and redefining need not to be same..Then does the below case true 01 ws-date pic 9(6). 01 ws-redf-date REDEFINES ws-date 05 ws-year pic 9(4) 05 ws-mon pic 9(2) 05 ws-day pic 9(2)
Explain the configuration section of a cobol program with examples of syntax.
How is sign stored in a COMP field ?
I have a table with 3 dimensions like this : 01 ws-table 04 ws-page occurs 3 08 ws-column occurs 2. 12 ws-record occurs 20 pic x(40). How to code with PERFORM varying with 3 dimension...I forgot..
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases