सी' भाषा में एक प्रोग्राम लिखिए जो किसी ऐरे में 12 संख्या इनपुट कराए तथा उनमें से अधिकतम एवं न्यूनतम संख्या को छापे।
Answers
Answered by
1
Explanation:
dvdjhchdvdbcu and I will have a chance at the best y
Answered by
2
सी' भाषा में एक प्रोग्राम लिखिए जो किसी ऐरे में 12 संख्या इनपुट कराए तथा उनमें से अधिकतम एवं न्यूनतम संख्या को छापे।
Explanation:
C program
#include <conio.h>
int main()
{
int a[1000],i,n,min,max;
printf("Enter size of the array : ");
scanf("%d",&n);
printf("Enter elements in array : ");
for(i=0; i<n; i++)
{
scanf("%d",&a[i]);
}
min=max=a[0];
for(i=1; i<n; i++)
{
if(min>a[i])
min=a[i];
if(max<a[i])
max=a[i];
}
printf("minimum of array is : %d",min);
printf("\nmaximum of array is : %d",max);
return 0;
}
OUTPUT
Enter size of the array : 12
Enter elements in array: 1
22
30
40
35
89
34
88
56
11
33
minimum of an array is: 1
maximum of an array is: 89
Similar questions