If you want to change the color of text in console windows without using graphic then you can use this code in codeblock.Source code download
#include <windows.h> //header file for windows
#include <stdio.h> //C standard library
void SetColor(int ForgC);
int main()
{
SetColor(34);
printf("test clour");
return 0;
}
void SetColor(int ForgC)
{
WORD wColor;
//We will need this handle to get the current background attribute
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO csbi;
//We use csbi for the wAttributes word.
if(GetConsoleScreenBufferInfo(hStdOut, &csbi))
{
//Mask out all but the background attribute, and add in the forgournd color
wColor = (csbi.wAttributes & 0xF0) + (ForgC & 0x0F);
SetConsoleTextAttribute(hStdOut, wColor);
}
return;
}
you can change your desire text color by passing integer value range 0 up-to 256 in SetColor( ) function.
I need a help. Please could someone post a code, the classic game of Pong, compiled in Code Blocks in C + +. The game will have to have two players with two goalkeepers, with time and score at the end.
ReplyDeleteThanks.Nice code .
ReplyDeleteI wanted exactly the same.
Sudipta Maity,Kolkata
THIS PROGRAM IS FOR C++. CAN YOU SUGGEST ANY PROGRAM TO CHANGE BACKGROUND AND FOREGROUND COLOURS IN C LANGUAGE,ESPECIALLY IN TURBO C/C++ or MINGW ON CODEBLOCKS ?
ReplyDelete