Question: Write a C program that finds the INDEX of smallest numbers (they may not be unique) in an array. Example: if the array is like
Write a C program that finds the INDEX of smallest numbers (they may not be unique) in an array.
Example: if the array is like this; int arr[5] = {1, 2, 2, 0, 0};, the program would return 3 and 4 (possibly store them in another array) as these indices have the smallest values.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
