welche art array? int array[10]? nein. int *array = (int*)malloc(sizeof(int)*10)? ja. theoretisch (s. realloc). wenn du ein dynamisches array willst, sind linked lists oder ein stack wahrscheinlich die schnellere lösung.