#include #include #include #define STR_SIZE 30 #define STUDEN_NUMBER 200 struct student { char surname[STR_SIZE]; char name[STR_SIZE]; uint8_t age; }; //возраст самого старшего человека; int Eldest(struct student* course,int number){ int max = course->age; for(int i=1;iage) max = (course+i)->age; return max; } //количество людей с заданным //именем (имя также является //параметром функции); int SameNameNumber(struct student* course,int number,char* name) { int counter = 0; for(int i=0;i