is there anything in c++ that provides to print out on screen colored text ex. cout<<"welcome"<
Well depending on your operating system you may be able to get by with something like this:
#include <stdlib.h> #include <iostream.h> void main() { cout<<"Boring..."<<endl; system("color 0B"); cout<<"AMAZING!"<<endl; }
You can also use conio.h.Check my post below.It should give enough info I think.
http://www.daniweb.com/techtalkforums/showthread.php?p=30122#post30122