hi. This is Ram.i have one doubt.why can't we display comp-3
variables directly? let me answer quickly plez........
Answer / yuvaevergreen
Hi ram,
Comp-3 variables are generally used for high storage
efficiency. They are stored in packed decimal format
internally.So, display is possible only when the packed
decimal item is moved to a numeric edited item.
| Is This Answer Correct ? | 21 Yes | 0 No |
perform I from 0 by 1 until I=5?How maney times it will executes
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.
how can you identify wheather the program is using search or search all in the cobol program?
how to remove leading spaces and zeroes in a cobol variable.is there any easy way to do it
give the examples for strings and unstrings in cobol
what happens of we dont give time stamp in precompilation process
01 a pic x(6) value is abcdef 01 b pic x(3) move a to b wht will be the value in b ?
in the TIME parameter we r giving hours r minutes
There are two flat files one having 10 records and other having 5 records. write a cobol pgm to find the duplicate records(matching records)from both files.
what is difference between the sysabend and userabend?
when SE37 SB37 and sd37 occurs how to increase the volume , primary quantity and secondary quantity?
The following entries appear in the WORKING-STORAGE SECTION: 01 DATE-TODAY. 05 YY PIC XX VALUE "90". 05 MM PIC XX VALUE "12". 05 DD PIC XX VALUE :31". 01 DATE-EDIT PIC XX/XX/XX. MOVE DATE-TODAY TO DATE-EDIT. (a) 901231 (b) 90/12/31 (c) 31/12/90 (d) 311290