部分程序
#include <stdio.h>
#define N 3 ?//便於運行測試,只給定義3,也可以其他值
struct man
{ char name[20];
int age;
} m_p[N];
int Max_age(struct man m_p[],int k);
有改動