I want to increase my array's size, which is declared as 3, to a size of 5.

example :

int test[3];

I want to increase the array test size to 5

test[5];



So, are there any ways that I can do this?