#include #include void main() { int i,a[10],temp,j; clrscr(); cout<<"Enter any 10 num in array: \n"; for(i=0;i<=10;i++) { cin>>a[i]; } cout<<"\nData before sorting: "; for(j=0;j<10;j++) { cout<a[j+1]) { temp=a[j]; a[j]=a[j+1]; a[j+1]=temp; } } } cout<<"\nData after sorting: "; for(j=0;j<10;j++) { cout<