Click here to Skip to main content
Click here to Skip to main content

Random Color Generator

By , 15 Sep 2011
 

Easy HTML random color generator code (in C++):

srand (time(NULL));
TCHAR rand_color[10];
wsprintf (rand_color, L"#%02x%02x%02x", rand()%255, rand()%255, rand()%255);
//rand_color is now a random html color code in text

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

flector
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralA good point. I very rarely comment on CodeProject articles...memberflector15 Sep '11 - 11:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 15 Sep 2011
Article Copyright 2011 by flector
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid