highvideo是一個函式,用於選擇高亮度文本字元。
基本介紹
- 中文名:highvideo
- 頭檔案:: conio.h
- 用 法:: void highvideo(void)
- 功 能:: 選擇高亮度文本字元
函式名: highvideo
程式例:
#include <stdio.h>
#include <conio.h>
int main(void)
{
clrscr();
lowvideo();
cprintf("Low intensity text\r\n");
gotoxy(1,2);
highvideo();
cprintf("High intensity text\r\n");
return 0;
}