[SOLVED] Data Engineers regularly collect, process and store data. In this task | SolutionInn
5. exit the program
Exit the interactive program. Careless Users Your program may assume that the input data type is always the expected type i.e. when the program expects an integer the user must enter an integer. However, a careless user may enter an input that is outside the expected range (but still of the expected data type). Your program is expected to handle careless users. e.g. Enter choice (number between 1-5)> -1 Invalid choice Or a careless user may try to add 365 as the month (month should be between 1 and 12). Or try to add a flight to the flights array when it already contains MAX_NUM_FLIGHTS flights, etc. Run the sample executable to futher understand the expected behaviour. Check the formatting of the flightcode WARNING: Attempting this feature is recommended only for advanced students who enjoy a small challenge. You may need to do your own research, but more than that you may have to be creative. By using incorrect techniques you could very well introduce more bugs in your code and it could be time consuming. The special techniques required for this purpose will not be assessed in the final exam. Your program should be able to check the format of the flightcode. The first two characters of the flightcode should be uppercase letters (A-Z) representing the airline. The rest of the flightcode should be numerals (0-9) representing the flight number. There must be 1-4 numerals as the flight number part of the flightcode. No spaces in the flightcode. Run the sample executable to further understand the expected behaviour. Step by Step Solution There are 3 Steps involved in it To address this task you will need to create a C program that manages flight data allowing you to add display save and load flights Heres a structured plan to help you get started Step 1 Define Struct... View full answer Get step-by-step solutions from verified subject matter experts