Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.80K
1 Posted Topic
Hello Friends this is simple code to change the text color or backgroung color in dev-C++ software.... #include <iostream> #include <stdlib.h> #include <windows.h> #include <stdio.h> using namespace std; int main() { HANDLE a = GetStdHandle (STD_OUTPUT_HANDLE); SetConsoleTextAttribute(a, FOREGROUND_RED | FOREGROUND_INTENSITY); cout << "Bright red text\n"; //SetConsoleTextAttribute(a, 4 | FOREGROUND_INTENSITY); //cout …
The End.
suneel khatri