How to Convert 2010/02/11 to m/dd/yyy.. with string and
without string if any other method... code
Answer Posted / naresh bandaru
01 date-input
05 DATE-YYYY PIC 9(04).
05 FILLER PIC X(1).
DATE-MM PIC 9(02).
FILLER PIC X(1).
DATE-DD PIC 9(02).
01 date-output
05 DATE-YYY PIC 9(03).
05 DATE-M PIC 9(01).
05 DATE-DD1 PIC 9(02).
accept date-input.
move date-yyyy to date-yyy.
move date-mm to date-m.
move date-dd to date-dd1.
display date-output
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain the types of perform?
Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?
Explain the syntax of sort?
Define sort?
Explain the input procedure?
Define perform? And its types?
Explain the input procedure and output procedure?
Explain how to update data area in cobol 400 program?
What is the syntax of sort?
How to update data area in cobol 400 program?
How to detect record is locked in cobol/400? What is the solution for that?
What is the syntax of redefine?
Explain the difference between comp & comp-3?
Explain the difference between search and searchall?
Explain what all the conditiones required for using open opcode on a file?