Possible Duplicate:
Sorting in arrays
int A[5]={1,5,3,2,4};
for(int i=0;i<5;i++){
for(int j=0;j<5;j++){
if(A[j]>A[j+1])
{
int t=A[j];
A[j]=A[j+1];
A[j+1]=t;
}
}
}
for(i=0;i<5;i++)
cout<<A[i];
The desired output must be 1,2,3,4,5 but my output is 0,1,2,3,4. What's the problem in my code?