Hi
How would i change the colour of the text that is outputted... e.g

Code:
#include <iostream>

using namespace std;

int main()
{
    cout << "C++ rules!!!" << endl;
    cin.get();
    return 0;
}
Say if i wanted to change the
Code:
 C++ Rules!!!"
to red or something.. how would i do that?

Thanks in advance