Question: Correct the logic/syntax error in the code without changing its flow. code for reference # include using namespace std; template T average(){ T *array; int
Correct the logic/syntax error in the code without changing its flow.

code for reference
# include
using namespace std;
template
T average(){
T *array;
int size;
cout
cin>>size;
array=new T[size];
array2=new T[size];
for(i=0;i cout cin>>array[i]; array2[i]=array2[i]+array[i]; } cout } int main(){ average(); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
