#include <iostream>
using namespace std;
int main()
{
int *arr;
int i,n;
cout<<"Enter total number of elements:";
cin>>n;
//declare memory
arr=new int(n);
cout<<"Input "<<n<<" elements"<<endl;
for(i=0;i<n;i++)
{
cout<<"Input element "<<i+1<<": ";
cin>>arr[i];
}
cout<<"Entered elements are: ";
for(i=0;i<n;i++)
{
cout<<arr[i]<<" ";
}
cout<<endl;
delete (arr);
return 0;
}
Output
Enter total number of elements:5
Input 5 elements
Input element 1: 10
Input element 2: 20
Input element 3: 30
Input element 4: 40
Input element 5: 50
Entered elements are: 10 20 30 40 50
Consider the following program:
Output