cprintf

王朝百科·作者佚名  2010-01-15
窄屏简体版  字體: |||超大  

函数名: cprintf

功 能: 送格式化输出至屏幕

用 法: int cprintf(const char *format[, argument, ...]);

头文件:conio.h

程序例一:

#include <stdio.h>

int main(void)

{

/* clear the screen */

clrscr();

/* create a text window */

window(10, 10, 80, 25);

/* output some text in the window */

cprintf("Hello world

");

/* wait for a key */

getch();

return 0;

}

例二:

#include <stdio.h>

#include <conio.h>

int main(void)

{

clrscr(); /*清屏函数*/

textbackground(2); /*文本的背景色*/

gotoxy(1, 5); /*定位函数*/

cprintf("Output at row 5 column 1

");

textbackground(3);

gotoxy(20, 10);

cprintf("Output at row 10 column 20

");

getch(); /*等待用户按键*/

return 0;

}

程序例二:

#include <stdio.h>

#include <conio.h>

int main(void)

{

int color;

textcolor(10); /* 设置文本颜色 */

for(color=0;color<8;color++)

{

gotoxy(1+color*3,1+color*2); /* 定位函数 */

textbackground(color); /* 设置背景颜色 */

cprintf("Hello World",color);

}

getch(); /* 等待用户按键 */

return 0;

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航