I worked with C about 3 years ago and haven't used it at all since. So it's all a bit fuzzy and I don't remember anything beyond the basics
I'm currently attempting to writing a program in C and am currently trying to find a way to shuffle this array
char Colors[][7] = {"Red", "Purple", "Yellow", "White", "Blue", "Green"};
and then pull the colors and store them at
char color1[7];
char color2[7];
char color3[7];
char color4[7];
char color5[7];
char color6[7];
on a similar note how would I have it check to see
if char color1[7] = Red
and if so have it choose between two possible values in this array
char red[][22] = {"first", "second"};