home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGC.ZIP
/
PROGC045.C
< prev
next >
Wrap
Text File
|
1988-04-10
|
574b
|
13 lines
/************************************************************************/
/* Display three consecutive characters starting at the end of the */
/* 80x25 screen */
/************************************************************************/
write_one_char()
{
write_char('A', 24, 40); /* First character */
write_char('B', 24, 41); /* Second character */
write_char('C', 24, 42); /* Third character */
}