home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGC.ZIP
/
PROGC048.C
< prev
next >
Wrap
Text File
|
1988-05-15
|
371b
|
11 lines
/************************************************************************/
/* Print 'Hello' in the middle of 80x25 screen */
/************************************************************************/
print_hello()
{
clear_screen();
write_string(12, 40, "Hello"); /* Display a string */
}