Question: Description Data Engineers regularly collect, process and store data. In this task you will develop a deeper understanding of how C programming language can be
Description Data Engineers regularly collect, process and store data. In this task you will develop a deeper understanding of how C programming language can be used for collecting, processing and storing data. In this assignment you get the opportunity to build an interactive program that can manage the list of flights departing Sydney Airport. The list is stored as an array of flight t type structures flight t flights [MAX NUM FLIGHTS The flight t is a structure typedef for struct flight. The struet flight contains the following fields flightcode-array of MAX-FLIGHTCODE-LEN+ 1 chars (string) . departure dt astructure of date time t type as defined below arrival city array of Ax CITYCODE LEN+1 chars (string) arrival de a structure of date tine t type as defined below Note that we now have a struct nested within a struct. The date time t is a structure typedef for struet date tine. The struet date tine contains the following fields month-integer between 1 and 12 (inclusive) day-integer between 1 and 31 (inclusve) hour-integer between 0 and 23 (inclusive) minute- integer between 0 and 59 (inclusive Your program interacts with the nested struct array in your memory (RAM) and simple database file in your hard disk It should provide the following features
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
