ntoa

The ntoa function is a numeric function that converts real numbers into strings. The numeric functions enable you to convert one data type to another.

Syntax

Use this syntax:


ntoa(real,string);
where:  real    = real number variable
         string  = string variable

Example

An example of this function follows:


real b;
string[20] s;
b = 5.5;
ntoa(b, s);
// "s" contains "5.5"