Using C++ Language Need help on below code, I have the code but need to compute maximum of the array. Code: #include using namespace std; int main() { int size; cout>size; int *numList=new int[size];...


Using C++ Language


Need help on below code, I have the code but need to compute maximum of the array.


Code:


#include


using namespace std;





int main()

{



int size;



cout<" enter="" array="" size:="">

cin>>size;



int *numList=new int[size];



cout<"enter><><" elements:="">



for(int i=0;i<>

{

cin>> *(numList+i);

}







delete numList;



return 0;

}



Jun 09, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here