Answers for "cpp console colors"

C++
2

c++ console color

SetConsoleTextAttribute(console, ((int)background * 16) + (int)forground);
Posted by: Guest on May-29-2021
1

console colors in C++

//This is one way to do it. Taken from stackoverflow.
system("color 70");
//It just runs a cmd command.
Posted by: Guest on May-27-2020

Browse Popular Code Answers by Language