# C PROGRAMS
Array Programs
➤ Find Length of Array
➤ How to Print an Array
➤ Sum of Array Elements
➤ Reverse an Array in C
➤ Copy an Array in C
➤ Merge Two Arrays in C
➤ Merge Two Sorted Arrays
➤ Count Repeated Elements
➤ Find Duplicate Elements
➤ Linear Search in C
➤ Binary Search in C
➤ Insert Element in Array
➤ Delete Element in Array
➤ Display odd-even in Array
➤ Sum & Count of Odd-Even
➤ Count +ve, -ve, & 0
➤ Sum of +ve, -ve Numbers
➤ Avg & Numbers > Avg
➤ Smallest & Largest Element
➤ 1st 2nd Max-Min
➤ Sort Array in C
➤ Search element in Array
➤ Search index of Nth times occurred element
➤ Matrix Programs
C Program to Find the Largest and Smallest Number in Array with their Position | Here we will find the smallest and largest Array element with their position. Prerequisites:- Array in C
Find Smallest and Largest Number with their Position in Array using C
#include<stdio.h>
int main()
{
int a[100], n, i, max, min, maxPos, minPos;
printf("Enter array size [1-100]: ");
scanf("%d",&n);
maxPos=minPos=0;
//Take array elements and find min and max
printf("Enter array elements: ");
scanf("%d",&a[0]);
max=min=a[0];
for(i=1; i<n; i++)
{
scanf("%d",&a[i]);
if(max<a[i])
{
min=a[i];
minPos=i;
}
if(min>a[i])
{
min=a[i];
minPos=i;
}
}
printf("Largest element is %d at %d position.\n", max,maxPos);
printf("Smallest element is %d at %d position.", min,minPos);
return 0;
}
Output:-
Enter array size [1-100]: 5
Enter array elements: 1 2 3 4 5
Largest element is 5 at 4 position.
Smallest element is 1 at 0 position.
Enter array size [1-100]: 4
Enter array elements: 50 9 5 10
Largest element is 50 at 0 position.
Smallest element is 5 at 2 position.
In this program initially, we assigned min and max element to the first element of the array. If there was only one element in the array then for loop will not be executed and that element becomes both min and max element. If array has more than one element than for loop executed. Inside for loop, when any element found bigger than max element than that element becomes max. Similarly happens with min also, if any element found lesser than min than that element becomes min. Finally, min and max displayed with their position.
If you enjoyed this post, share it with your friends. Do you want to share more information about the topic discussed above or do you find anything incorrect? Let us know in the comments. Thank you!
Similar C programming examples on Arrays
- Sum of Array elements
- Display even & odd numbers in an array
- Sum and count of even and odd numbers in an array
- Count positive negative and zeros in the array
- Sum of positive and negative numbers
- Average and numbers greater than average in the array
- Find Smallest and largest Array element
- First maximum & minimum, Second maximum & minimum
- Sort a list of an array element
- Search an Array element
- Search position of nth times occurred element in an array
- C program to insert an element in an array
- C program to delete an element in an array
- Passing a multidimensional array to Function
- Find Largest and smallest in a 2D array with their position
- Store temperature of two Cities for a week & display
- Matrix Operations – Addition, Multiplication, Transpose
Shouldn’t it be the minPoz return 0? Since we start indexing from 0. So.. in array let’s say 1,2,3,4,5 Smallest element is 1 at position 0.
It is displaying regular counting from 1 to N, not programming counting where it starts from 0 to N-1.