#include #include void main() { int i,n,temp,j,arr[25]; printf("Enter the number of elements in the Array: "); scanf("%d",&n); printf("\nEnter the elements:\n\n"); /* [input] */ for(i=0 ; iarr[j+1]) //Swapping Condition is Checked { temp=arr[j]; arr[j]=arr[j+1]; arr[j+1]=temp; } } } // [bubble] printf("\nThe Sorted Array is:\n\n"); /* [output] */ for(i=0 ; i