DTOA - ***OBSOLETE*** use PRINT.

Usage:

dtoa(number, string [, width [, fill] ]);

Description:

DTOA converts the given integer number to ASCII in "string". The conversion may be controlled by the optional arguments "width", and "fill".

"Width" is the minimum width of the field in the output string including the sign. If "width" is not given it is assumed to be zero.

"Fill" is the character used when the number is not as long as the value of "width". If "fill" is not given it defaults to a blank.

DTOA ends up by doing a

print( string, "%?,xd", width, number );

where 'x' is the fill character.

Copyright © 1996, Thinkage Ltd.