I wonder if there is a way to declare multiple structs in C. For example, I made this:
struct Team{
char TeamName[20];
int Point;
int Goals;
};
typedef struct TeamCup {
char GroupID;
struct Team team;
}Group;
Group g1, g2;
I want each TeamCup to have 4 teams. But when it comes to input process, in my loop, the variable here is undefined:
g1.Team[i].Point;
In this case you need to write
and
Thar is you need to declare an array of objects of the type
struct Teamwithin the structurestruct TeamCup.