Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #define MAXATH 15
- #define MAXTEAMS 10
- #define MAXNAME 40
- struct AthletType {
- int matr,age;
- float height;
- };
- struct Date {
- int day,month,year;
- };
- struct Team {
- struct AthletType Athlets[MAXATH];
- struct Date CreationDate;
- char TeamName[MAXNAME];
- }
- int main() {
- struct Team TeamData[MAXTEAMS];
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment