TEXT* textArray[10];
Creates an array of empty text pointers. Now you have to create 10 texts and make the pointers in the array point to them:
Code:

for(i = 0; i < 10; i++)
{
textArray[i] = txt_create(1,1);
}


Then you can use them like this:
(textArray[3])->pos_x = 100;