num2Char Function

Converts an integer to the corresponding ASCII character.


str num2Char(int figure)

Parameter

Description

figure

The integer to convert to a character.

The character that is represented by the specified integer.

static void num2CharExample(Args _arg)
{
    str s;
    ;
    s = num2Char(42);
    // Prints an asterisk–-the character represented by 42.
    print s;
  
    pause;
}

Community Additions

ADD
Show: