BUBBLE SORTING ALGORITHM IN C
1. Bubble Sort
the bubble sort algorithm says it is the simplest sorting techniques which is also called as an bubble sort .
Algorithm
for (i= 0; i[j])
{
t= a[i];
a[i]= a[i];
a[j] = t;
}
}
}
}
}