如何在c语言中输出有颜色的图片或文字?
在c语言写程序时,如何能让输出的文字或图片有渲染的效果,或者是说能让文字有颜色这类的改变呢?各位亲们还请你们多多帮忙哦顶你们
程序代码:
#include <stdio.h> #include <stdlib.h> int main() { system("color f5");//该函数功能很强大,可以改变字体颜色 printf("hello world"); system("pause"); return 0; }