what is the use of outrecord?
No Answer is Posted For this Question
Be the First to Post Answer
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..
What is COMP SYNC?
how to run sub programs using static and dynamic call ...
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
0 Answers TryTechnicals Pvt Ltd,
can you declare redefine in level 01?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
Can 88 level variable be declared in FD section..?
sample code for read a 2nd record from last in flatfile how can do?
What is the size of s9(19)comp3? explain
what is the default print format? in cobol
How can we know that cobol program is using report file or simple file....?
Can we use goto statement in inline_perform ?