Random Color Generator
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