请输入您要查询的百科知识:

 

词条 puttext
释义

函数名: puttext

功 能: 将文本从存储区拷贝到屏幕

用 法: int puttext(int left, int top, int right, int bottom, void *source);

程序例:

#include <conio.h>

int main(void)

{

char buffer[512];

/* put some text to the console */

clrscr();

gotoxy(20, 12);

cprintf("This is a test. Press any key to continue ...");

getch();

/* grab screen contents */

gettext(20, 12, 36, 21,buffer);

clrscr();

/* put selected characters back to the screen */

gotoxy(20, 12);

puttext(20, 12, 36, 21, buffer);

getch();

return 0;

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/29 7:41:13