SETBACK.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <conio.h>
  2. void main(void)
  3.  {
  4.    union TextColor {
  5.      struct {
  6.       unsigned char foreground:4;
  7.       unsigned char background:3;
  8.       unsigned char blinking:1;
  9.      } color_bits;
  10.      unsigned char value;
  11.    } colors;
  12.    colors.color_bits.foreground = BLUE;
  13.    colors.color_bits.background = RED;
  14.    colors.color_bits.blinking = 1;
  15.    textattr(colors.value);
  16.    clrscr();
  17.    cprintf("This is the new text colorsn");
  18.  }