home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGC.ZIP
/
PROGC040.C
< prev
next >
Wrap
Text File
|
1988-05-15
|
435b
|
12 lines
/************************************************************************/
/* Set cursor to the middle of 80x25 screen */
/************************************************************************/
cursor_in_middle()
{
clear_screen();
set_cursor_position(12,40); /* Cursor in middle */
printf("This string starts at row 12 column 40");
}