Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

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 << "			 ****CEB Electricity Bill Calculator****			 " << endl;
    cout << "			  ***                MENU           ***			  " <<endl;

    return 0;

}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #add #colored #text
ADD COMMENT
Topic
Name
2+5 =