Any one Know How to Change Font Size and Font Color in C ? :)
Sudantha_s Member Feb 2, 2007 3,516 7 0 Assassin Brotherhood Nov 23, 2008 #1 Any one Know How to Change Font Size and Font Color in C ?
Sudantha_s Member Feb 2, 2007 3,516 7 0 Assassin Brotherhood Nov 23, 2008 #4 Lich said: What is the Compiler... Click to expand... Turbo C++ bro
M madurax86 Member Jun 29, 2006 4,385 88 0 Nov 23, 2008 #5 u mean in the console?? terminal eke font change karana ba
C chanakam2000 Member Oct 12, 2008 91 0 0 Nov 23, 2008 #7 http://www.dreamincode.net/forums/showtopic21022.htm
nismok Well-known member Jun 27, 2008 9,391 673 113 Nov 23, 2008 #8 Try this.. Works in C++ SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 0); //replace the 0 with a number for the color you want Click to expand...
Try this.. Works in C++ SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 0); //replace the 0 with a number for the color you want Click to expand...
nismok Well-known member Jun 27, 2008 9,391 673 113 Nov 23, 2008 #9 Take #include <windows.h> Click to expand...