Writes zoned decimal separate leading-sign data in IBM mainframe format.
Category: | Numeric |
Alignment: | Left |
y=put (x,s370fzds4.); put y $hex8.;
Value of
x |
Result 1
|
---|---|
123 |
4EF1F2F3 |
-123 |
60F1F2F3 |
1The result is a hexadecimal representation of a binary number in zoned decimal format on an IBM mainframe computer. Each two hexadecimal characters correspond to one byte of binary data, and each byte corresponds to one column of the output field. |