Merge branch 'master' into master

This commit is contained in:
Ashwek Swamy
2019-02-09 13:25:12 +05:30
committed by GitHub
8 changed files with 399 additions and 33 deletions

View File

@@ -6,7 +6,7 @@ using namespace std;
int main()
{
int n;
cout<<"Enter the number of elements in your array: ";
cout<<"\nEnter the length of your array : ";
cin>>n;
int Array[n];
cout<<"\nEnter any "<<n<<" Numbers for Unsorted Array : ";
@@ -36,5 +36,6 @@ int main()
{
cout<<Array[i]<<"\t";
}
return 0;
}