解釋
函式名: delline功能: 在文本視窗中刪去一行
用法: void delline(void);
程式例
#include <conio.h>int main(void)
{
clrscr();
cprintf("The function DELLINE deletes \
the line containing the\r\n");
cprintf("cursor and moves all lines \
below it one line up.\r\n");
cprintf("DELLINE operates within the \
currently active text\r\n");
cprintf("window.Press any key to \
continue . . .");
gotoxy(1,2);/* Move the cursor to the
second line and first column */
getch();
delline();
getch();
return 0;
}