Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Bounty
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
How to Find Maximum & Minimum Element in the Array Program in C
WhatsApp
Ashish Srivastava
Apr 23
2016
1.5
k
0
0
#include<stdio.h>
# include<conio.h>
void
main()
{
int
a[100],i,n,max,min;
clrscr();
printf(
"How many elements in the array : "
);
scanf(
"%d"
,&n);
printf(
"Enter the elements : \n"
);
for
(i=0;i<=n-1;i++)
{
scanf(
"%d"
,&a[i]);
}
max = a[0];
min = a[0];
for
(i=1;i<=n-1;i++)
{
if
(max<a[i])
max = a[i];
if
(min>a[i])
min = a[i];
}
printf(
"maximum element in the array is :%d\n "
,max);
printf(
"minimum element in the array is : %d\n"
,min);
getch();
}
find maximum amp minimum element
array Program
C
Up Next
How to Find Maximum & Minimum Element in the Array Program in C