//Bubble Sort #include using namespace std; int main(){ int n, temp; cout<<"Enter size of Array = "; cin >> n; int *Array = new int[n]; cout<<"\nEnter any " <