View previous topic :: View next topic |
Author |
Message |
maverick05 Beginner

Joined: 15 May 2005 Posts: 72 Topics: 24
|
Posted: Fri Jun 17, 2005 6:25 am Post subject: Move verb |
|
|
Hi,
This is my program.
WORKING-STORAGE SECTION.
01 Y PIC X(2).
01 Z PIC 9(4).
PROCEDURE DIVISION.
MOVE Y TO Z
DISPLAY 'Y = 'Y.
DISPLAY 'Z = 'Z.
O/P is :
Y =
Z = 00 0
My question is what happened to the 3rd byte in Z???????? |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
|
|