insline

insline是一個函式,用來在文本視窗中插入一個空行。

功能用法

功 能: 在文本視窗中插入一個空行
用 法: void insline(void);

inslineinsline

程式示例

#include <conio.h>
int main(void)
{
clrscr();
cprintf("INSLINE inserts an empty line in the text window\r\n");
cprintf("at the cursor position using the current text\r\n");
cprintf("background color. All lines below the empty one\r\n");
cprintf("move down one line and the bottom line scrolls\r\n");
cprintf("off the bottom of the window.\r\n");
cprintf("\r\nPress any key to continue:");
gotoxy(1, 3);
getch();
insline();
getch();
return 0;
}

inslineinsline

相關條目

計算機 計算機技術 編程 C語言 VB語言

相關詞條

相關搜尋

熱門詞條

聯絡我們