Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please write this code in simple C programming only. Also please do not use other Chegg answers as they are complicated and hard for me
Please write this code in simple C programming only. Also please do not use other Chegg answers as they are complicated and hard for me to understand.
Comments for learning would be apprecaited. Thank you!
Create a text file that contains three columns and five rows. First column contains strings values, second column contains integer values, and third column contains float values (you are free to use your own values). Declare a structure that contains 3 elements. (you are free to use your own variables) First element should be a char array - to read first column values from the text file Second element should be an int value to read second column values from the text file Third element should be a float value - to read third column values from the text file Declare an array of this structure with size 5 and read the contents of the text file into this array. Then prompt the user with the following instructions: 1: Display the details of the array - call a function to display the contents of the array on screen. 2: To sort the array (you should call sort function - output of the sorting function is written onto a separate text file and terminal) You should give the user the chance to sort in ascending or descending order with respect to int value Then you should give the user the option to select from different sorting techniques (you should write minimum two sorting algorithm functions, call the functions according to the choice the user enters call the sorting function only after the user selects the above mentioned options) 3. To search for an int element (Write the output on terminal) You should give the user to select the searching technique (linear or binary must use recursive version of the searching functions) if binary is selected call a sort function first 4: To insert these array elements into a linked list in the order of integer values. Display the contents on the terminal. 5: Quit Your complete program should have multiple files (minimum two.c file and a .h file). Give your file name as heading and then paste your code. Do not forget to show the screen shots of your text files as well
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started