Thread: colored text
View Single Post
Join Date: Mar 2004
Posts: 219
Reputation: BountyX is an unknown quantity at this point 
Solved Threads: 8
BountyX's Avatar
BountyX BountyX is offline Offline
Code Guru

Re: colored text

 
0
  #2
May 27th, 2004
Well depending on your operating system you may be able to get by with something like this:

  1. #include <stdlib.h>
  2. #include <iostream.h>
  3. void main()
  4. {
  5. cout<<"Boring..."<<endl;
  6. system("color 0B");
  7. cout<<"AMAZING!"<<endl;
  8. }
A Hacker's Mind:
"I thought what I'd do was, I'd pretend I was one of those deaf-mutes..." - J.D.Salinger
Reply With Quote