Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

changue text color c++

// Change text color C++

// Colors http://es.tldp.org/COMO-INSFLUG/COMOs/Bash-Prompt-Como/Bash-Prompt-Como-5.html
#include <iostream>
using namespace std;


int main(){
  		string color = "33[31m RED";
        cout << "33[31m" <<"Text in Red"<<endl;
        return 0;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #changue #text #color
ADD COMMENT
Topic
Name
6+5 =