[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
NAME: Chr
USE: Returns a character with a specified ordinal value. The same
results can be obtained by using the # operator. For EXAMPLE:
#65, Chr(65) and 'A' are equivalent.
DEPENDENCY: None
SYNTAX: Chr(NumericValue);
Chr(Byte);
EXAMPLE: Program TestChr;
Var
Loop : Byte;
Begin
Writeln('ASCII Values:');
For Loop := 33 to 125 do Writeln(Loop,' = ',Chr(Loop));
end.
See Also:
Ord
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson