cprintf
函数名: 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;
}