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)
What are different data types in cobol?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records...
2 Answers ITC Indian Tobacco Company, PNP, TCS,
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
have in 100 records in a file i want to move only matched records to one output_file1 and nonmathed records are moved to another output_file2 ... any one can provide logic code
What is the difference between static call & Dynamic call?
which of the following can be used as a check protection symbol a.Z b.S c.* d.+
how do u list the abended jobs?
Wat is the difference between NEXT and CONTINUE statement in cobol,can any one explain with example.
Can we move X(9) to 9(9). If yes what are the ways for doing this?
what is the maximum error code in mainframe
Whtz the specialty of 77 level number ?
WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?