Bubble Sort
arr[j + 1] = temp;
int main() { int arr[] = {64, 34, 25, 12, 22, 11, 90};
printArray(arr, n);
bubbleSort(arr, n);
return 0;