65.9K
CodeProject is changing. Read more.
Home

Random Color Generator

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.50/5 (2 votes)

Sep 15, 2011

CPOL
viewsIcon

22730

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

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