[C] 在文本窗口中插入一个空行 →→→→→进入此内容的聊天室

来自 , 2019-06-09, 写在 C, 查看 97 次.
URL http://www.code666.cn/view/c2ba1bc5
  1. #include <conio.h>
  2.  
  3. int main(void)
  4. {
  5.    clrscr();
  6.    cprintf("INSLINE inserts an empty line in the text window\r\n");
  7.    cprintf("at the cursor position using the current text\r\n");
  8.    cprintf("background color.  All lines below the empty one\r\n");
  9.    cprintf("move down one line and the bottom line scrolls\r\n");
  10.    cprintf("off the bottom of the window.\r\n");
  11.    cprintf("\r\nPress any key to continue:");
  12.    gotoxy(1, 3);
  13.    getch();
  14.    insline();
  15.    getch();
  16.    return 0;
  17. }
  18.  

回复 "在文本窗口中插入一个空行"

这儿你可以回复上面这条便签

captcha