I was wondering how do i increase an array size.

Example:

string *array;
array = new string[10];

and I want to increase the elements in that array to 20 how can i go by attacking this problem?
I want to only use arrays and not vectors so could someone please help me out thanks.