What is the scope of ANSI color codes. In following code everything is coming in blue. I only want "Compiled Successfully" in blue. Is there something like closing tags (eg. in HTML) here?
cout<<"\n\e[0;34mCompiled Successfully!!\n";
sym_table.render();
cout<<"\n\nAll variables according to sizes:\n";
for(auto el: addr_table){
cout<<el.first<<" "<<el.second<<endl;
}