home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGC.ZIP
/
PROGC024.C
< prev
next >
Wrap
Text File
|
1988-06-29
|
561b
|
13 lines
/************************************************************************/
/* Get current cursor size using library function */
/************************************************************************/
print_cursor_size()
{
int start, stop; /* Declare variables */
get_cursor_size(&start, &stop); /* Get shape */
printf("\nCursor starts at %d and stops at %d",
start, stop); /* Print the values */
}