在C中使用printf的多彩文本

前端之家收集整理的这篇文章主要介绍了在C中使用printf的多彩文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如何在控制台中打印彩色文字?我使用 eclipse win64 os.它是否与编译器有关?任何人都可以给C一个简单的例子,只需一个你好的世界文本,红色或任何颜色?

解决方法

我知道这在C中是非常容易做到的,但是我发现这个可以在C中看到:
#include <stdio.h>
#include <windows.h>   // WinApi header

int main()
{
  HANDLE  hConsole;
    int k;

  hConsole = GetStdHandle(STD_OUTPUT_HANDLE);

  // you can loop k higher to see more color choices
  for(k = 1; k < 255; k++)
  {
    SetConsoleTextAttribute(hConsole,k);
    printf("%3d  %s\n",k,"I want to be nice today!");
  }

  getchar();  // wait
  return 0;
}

所有的评论将帮助您找到您的方式通过代码 – 希望它有帮助!

原文链接:https://www.f2er.com/c/116260.html

猜你在找的C&C++相关文章