#include #include #include #include using namespace std; void initialize(int [],int ,int ); void print(int [],int ); void addelementfirst(int * & ,int & ); void addelementlast(int * & ,int & ); int *deletefirst(int [] ,int & ); int *deletelast(int [] ,int & ); int main() { int n; cout<<"Enter list size:"; cin>>n; int *a=new int[n]; initialize(a,n,0); cout<