im trying to insert a number into an array but when i insert a number it deletes the last number instead of increasing the array size by one....this is the code i have:
void Insertion(float T[100],int size)
{
float target = 0.0;
cout<<"Enter the number you are inserting"<>target;