how to add colored text in c++
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
//Changing Font Colors of the System
system("Color 7C");
cout << "ttt ****CEB Electricity Bill Calculator****ttt " << endl;
cout << "ttt *** MENU ***ttt " <<endl;
return 0;
}