If i was to make a struct with flip and Num and name it as board
example;
Code:
struct {

int flip;
int Num;

}board;
and i set flip == 0 using the if loop and print '#' and if flip == 1 , i print %c (a random number) . so , at this point , if i set flip = %c , then what should i set beside %c?
board.Num? or board.flip?

and how to set the array = what i want to put? this is what i cant understand how to do but have the concept.