[Solved] compile errors when trying to use struct in c
[ad_1] struct player only contains name and col. It doesn’t contain a BOOLEAN member. You could add such a member to it and have that member indicate whether the player is current. However that would be a bad design (because it is tedious to code and there are better options). Instead, have another variable that … Read more