Tell me how to adjust the text color in the console? Well, what would you like to write? COLOR_WINDOWTEXT? And How?
Added.
Well, for example, for the Hello world program to display green letters on the screen.
#include <iostream> using namespace std; int main() { cout << "Hello world!" << endl; return 0; }