Answer:
The following are the code in the C++ programming language.
//declare pointer type integer variable
int* squares;
//declare integer variable and initialize to 0
int s=0;
//set the for loop
for(int i=first; i<=last; i++)
{
//increment in the by 1
s++;
}
//initialize the incremented index value
squares=new int[s];
//set the for loop
for(int j=first; j<=last; j++)
{
squares[j-first]=j*j;
}
Explanation:
The following are the description of the program.