Question: Q7 Write a program in C to find the smallest element using Dynamic Memory Allocation. The program must: 1. Ask the user for the total

Q7 Write a program in C to find the smallest element using Dynamic Memory Allocation. The program must: 1. Ask the user for the total number of elements. 2. Let the user enter the numbers. 3. Create a dynamic array at run-time and store those numbers. 4. Display the entered numbers. 5. Find the smallest one and display it. Note: Numbers entered by the user can be floating point numbers. Don't forget to check the returned pointer. Before exiting program, you should release the memory space. Sample Output: Enter total number of elements: 5 Number 1: 12.3 Number 2: 24.9 Number 3: 77 Number 4: 7.5 Number 5: 30 You have entered: 12.30 24.90 77.00 7.50 30.00 The smallest element is: 7.50
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
