dos color.txt

来自「bankers algorithm calender colour」· 文本 代码 · 共 14 行

TXT
14
字号
// This will work in DOS. 
//I don't know if it will work in other OS.

#include <stdio.h> 
#include <conio.h> 

int main ()
{
  textcolor ( YELLOW );
  cprintf ("Color Testing \n");

  return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?