Previous Page | Next Page

Formats

S370FZDSw.d Format



Writes zoned decimal separate leading-sign data in IBM mainframe format.
Category: Numeric
Alignment: left

Syntax
Syntax Description
Details
Comparisons
Examples

Syntax

S370FZDSw.d

Syntax Description

w

specifies the width of the output field.

Default: 8
Range: 2-32
d

specifies to multiply the number by 10d. This argument is optional.

Default: 0
Range: 0-31

Details

Use S370FZDSw.d in other operating environments to write zoned decimal separate leading-sign data in the same format as on an IBM mainframe computer.


Comparisons


Examples

y=put (x,s370fzds4.);
put y $hex8.;

Value of x Results*
123
4EF1F2F3
-123
60F1F2F3
* The result is a hexadecimal representation of a binary number in zoned decimal format on an IBM mainframe computer. Each two hexadecimal digits correspond to one byte of binary data, and each byte corresponds to one column of the output field.

Previous Page | Next Page | Top of Page