C 修改命令行文本颜色

#include <Windows.h>
#include <stdio.h>

int main()
{
    HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
    WORD wOldColorAttrs;
    CONSOLE_SCREEN_BUFFER_INFO csbiInfo;

    /*
    * First save the current color information
    */
    GetConsoleScreenBufferInfo(h, &csbiInfo);
    wOldColorAttrs = csbiInfo.wAttributes;

    /*
    * Set the new color information
    */
    SetConsoleTextAttribute(h, FOREGROUND_RED | FOREGROUND_INTENSITY);

    printf("This is a test
");
    /*
    * Restore the original colors
    */
    SetConsoleTextAttribute(h, wOldColorAttrs);
}
原文地址:https://www.cnblogs.com/emyueguang/p/3877307.html