I was wondering how can i print in the console a colorful text? I use eclipse win64 os. Does it have to do with the compiler? Can anyone give a simple example in C with just a hello world text in red or whatever color? Thanks!
|
I know that this is incredibly easy to do in C++, but I found this for you to look at in C:
All of the comments will help you to find your way through the code - hope it helps! |
|||
|
|
|
If you want to print colored text in Windows console, you will have to use Windows API. ANSI.sys support is no longer present in Windows. In Linux you can still use ANSI escape sequences to color text. |
|||
|
|
|
If you are constrained to using just However, if you get the strings organized, then code like this will do the trick (more or less):
The hard part is determining what goes in the constant strings (which need not actually be constant). All this means there is probably a Windows-specific interface that can be used to do the job, but that does not really involve |
|||
|
|
|
The console in Java uses stdout which is whatever OS you are running on. For Windows, you would need to access the Console API to change the colours. For Linux or Mac, the console might support ANSI escape sequences which can change the console colours via stdout. |
|||
|
|
"\x1B".) – Keith Thompson Jan 6 '12 at 23:45