/*write a c program to sort N numbers i ascending order using bubble sort and print both the given array and sorted array with suitable heading*/ #include #include int main() { int i,j,n,a[15],t; printf("\n Enter the n of size of the array:\n"); scanf("%d",&n); printf("\n Enter the array:\n"); for(i=0;ia[j+1]) { t=a[j]; a[j]=a[j+1]; a[j+1]=t; } printf("\n sorted array:\n"); for(i=0;i