You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"Enter number of elements in array";
int n;
cin>>n;
int array[n];
cout<<"Enter elements in array";
for(int i=0;i<n;i++){
cin>>array[i];
}
cout<<array[n-1];
}