Generating a Nonprinting Character with the CHAR FunctionLast reviewed: December 11, 1995Article ID: Q49528 |
The information in this article applies to:
SUMMARYAn application developed in Microsoft FORTRAN can use the CHAR intrinsic function to create any character in the ASCII character set including the so-called "control" characters. The CHAR intrinsic function takes an INTEGER as an argument and returns a CHARACTER. The following code example sends a nonprinting character, a carriage return, to the screen.
Sample CodeC Compile options needed: None
WRITE (*, '(1X, A1)') CHAR(13) END |
Additional reference words: kbinf 1.00 4.00 4.01 4.10 5.00 5.10 ASCII ctrl-
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |