Question

Write a function that returns the index of the smallest element in an array of integers....

Write a function that returns the index of the smallest element in an array of integers. If there are more such elements than one, return the smallest index. C programming

0 0
Add a comment Improve this question Transcribed image text
Answer #1
int smallestIndex(int arr[], int size){
   int minIndex = 0, i;
   for(i=1;i<size;i++){
      if(arr[i]<arr[minIndex]){
         minIndex = i;
      }
   }
   return minIndex;
}
Add a comment
Know the answer?
Add Answer to:
Write a function that returns the index of the smallest element in an array of integers....
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT