I am doing ulan sequence in C language. Here based on input values more data will be sored in integer array. I need to create array without size limitation and I have used the code like following for create array without size limitation but it's not working.
int temp_arr[] = {0}, main_arr[] = {NULL}, i, j;
I am used array for do this logic, it's working for small values(1,2) but not working for large values(1001, 1234).