#include #include #define TOTAL 2 typedef struct passenger { int rg; }Passenger; typedef struct flight { int num; int type; double price; Passenger *crew; }Flight; int main() { int i, temp_type, capacity, not_proceed = 0; Flight *airport = (Flight*) malloc(TOTAL*sizeof(Flight)); i = 0; while(i