what is rediffine clause?in what situation it can use?give me
real time example?
Answer / sukesh adhikary
When u want to use same working storage area for different
variables. u must ensure that the space must not use at same
time of program execution.For example perform xyz uses a
space ABCD pic x(9) and it will not be used .then other
part of the program can use that space ABCD.
sukesh
9831281032
| Is This Answer Correct ? | 0 Yes | 0 No |
How to declare if emp-name = AAAAA""BBB in working-storage section. After display emp-name should print like AAAAA""BB
How do you reference the following file formats from cobol programs?
In COBOL "BEFORE" advancing is there or not ?
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
What will happen if we generate GDG (+2) version without generating (+1) version?
We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.
Re: 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.
using redefine can you redefine lower variable size to higher variable size?
Can we redefine the field of x(200) to less than 200?
How many divisions we have in Cobol ?
The order of precedence of arithmetic operators in an expression can be overridden with the use of (a) [] (b) () (c) {} (d) Any of the above
I have a seq file with different fields one field is address with pic x(50) as input in a cobol program. In address there is 'PUNE' at any different positions in the address field ( form 1 t0 50) . My requirement is select the fields with address 'PUNE' by using cobol. Please suggest