I have to add in this file a pointer that goes thru the array to add a worth. Does someone know how to make/change a array in this.
#include <malloc.h>
int main() {
int nummers;
printf("Hoeveel nummers wilt u gaan invoeren?\n");
scanf("%i", &nummers);
int* input = (int*) malloc (sizeof(int)*nummers);
for (int i = 0; i < nummers; ++i) {
printf("Nummer %d:", i+1);
scanf("%d", &input[i]);
}
for (int i = 0; i < nummers; ++i) {
printf("Nummer %d is: %d\n", i + 1, input[i]);
}
free(input);
}
Above here is my current code that already works only pointer arrays must be added or changed. 
This picture above has to be the end result Apreciate help.