Question
Develop a C program that will perform the following operations on an array containing grades by using appropriate functions. Use the array elements (as shown
Develop a C program that will perform the following operations on an array containing grades by using appropriate functions. Use the array elements (as shown in the output) in the main program and call the respective functions. The main function should print the array values before array change and array values after the array change.
The three different functions respectively should
calculate the standard deviation and return the standard deviation.
add the standard deviation (use the integer portion after rounding) to each of the original array elements. If the new value exceeds 100, the final value should be limited to 100.
Sort the array using modified bubble sort. The bubble sort presented in Fig 6.15 of the text is inefficient. Instead of making the same number of comparisons for every passes, modify it so that for every pass it makes one less comparison from the previous pass.
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