# include & ltstdio.h & gt
# include & ltconio.h & gt
# Define MAXSIZE 100
int main()
{
float a[MAXSIZE],temp,min
int i,n,k = 0;
Printf ("Please enter the total number of this batch:");
scanf("%d ",& ampn);
Printf ("\ nPlease enter this batch number:");
for(I = 0; I & ltn;; i++)
scanf("%f ",& ampa[I]);
min = a[0];
for(I = 1; I & ltn;; i++)
{
if(min & gt; a[i])
{ min = a[I]; k = I; }
}
temp = a[0];
A[0]= minimum value;
a[k]= temp;
for(I = 0; I & ltn;; i++)
printf("%4. 1f ",a[I]);
printf(" \ n ");
getch();
Returns 0;
}