Again my advice: read the manual and / or a good c book. Don't try this by trial and error. This will come in very very expensive later on. And please use code tags when posting code.

Here is a quick sample that should get you started anyways:
Code:
#include <acknex.h>

STRING* my_string_array[2];


void print_strings(STRING** array,int numberOfElements)
{
	int i;
	for (i = 0; i < numberOfElements; i++)
		printf(array[i]->chars);
}

void main()
{
	my_string_array[0] = str_create("Alpha");
	my_string_array[1] = str_create("Bravo");
	print_strings(my_string_array,2);
}



Always learn from history, to be sure you make the same mistakes again...