Find Smallest Element in Array C Program

By | October 12, 2015

C Program To Find Smallest Element in Array

Learn How To Find Smallest Element in Array in C Programming Language. It is important that we should know How A For Loop Works before getting further with the C Program Code.

To Search Minimum Element or the Smallest Element in an Array, we need to assign the First Element ( Index 0 ) as the Minimum. Then, Compare every other Element with Minimum. If the Element is Smaller than Minimum, then assign it to Minimum. This C Code makes use of Linear Search Algorithm to Find the Array Element.

Also Read: How To Find Maximum Element in 1-Dimension Array in C

 

C Program To Find Smallest Element in Array without Function

 

Output

C Program To Find Smallest Element in Array without using Function

In case you get any Compilation Errors with this C Program Code To Find Minimum Element of 1 Dimensional Array or if you have any doubt about it, let us know about it in the Comment Section below.

One thought on “Find Smallest Element in Array C Program

  1. Pankaj Dhende

    This was really an easy code. Thanks for helping me to find out the smallest array element in C.

    Reply

Let's Discuss