I want to declare a field with data type Double in my COBOL
program. how shall i do that ?
Answers were Sorted based on User's Feedback
Answer / tarunam
To Declare field with double data type u have to declare it
with comp-2
eg: PIC s9(8) usage is comp-2
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / prasad
With the above answer we can achive decimal numeric
declaration but we will not achive double format
declaration.
To Declare double data type in COBOL we have to decalre
field with COMP-3.
Examples:
WS-NUM PIC 9(4) COMP-3. for non decimal numbers
WS-NUM1 PIC 9(4) v 99 COMP-3. For decimal values.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / i go crazy
For COMP-2 we will not give PIC clause. By default it takes 8 bytes.
Is This Answer Correct ? | 2 Yes | 0 No |
How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".
wirte a pgm in using files in which we hav 10 ,20,30 40...100 records in inputfile and i want them to be send to outputfile in reverse order. PLZ HELP ME OUT .........THIS IS A RECENT QUESTION IN IGATE..
What is the difference between SEARCH and SEARCH ALL? What is more efficient?
At the minimum, which division of COBOL is enough to be coded?
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
in cobol main pgm is calling sub pgm but sub pgm does not exists , what abend i get if submit the job?
If we use GO BACK instead of STOP RUN in cobol?
What is Static and Dynamic linking ?
What is binary search?
Can anyone please give the example of Inline Perform.
What are the steps you go through while creating a COBOL program executable?
how do u link sub pgm to main pgm ?