Originally posted by beely
this statement is wrong ..
>> scanf ("%d",&board->value); //something like that!

correction is ...

>> scanf ("%d",&(board->value));
No it isn't. The first is not incorrect. It's perfectly valid.

Quzah.