https://godbolt.org/z/Efb1jqas9
This is my code, and my program stops after certain steps and I don’t know why.
//Implementing a database of all teams (nations) which will be used throughout the World Cup
//Team
struct Team {
int teamCode;
char teamName[100];
char *teamSeeding;
char teamColor;
};
//insterting the teams
int insertTeam (struct Team *t, struct Team teams[], int a, char cmd) {
int teamCode;
char teamName[100];
ch...