#include <stdio.h>
#include <string.h>

int main(void) {
	char Array[16][20];
	char texto[] = "This is my text example"; 
	char *pch;
	int i = 0;

	pch = strtok(texto," ");
	
	while (pch != NULL){
		strcpy(Array[i++], pch);
		pch = strtok (NULL, " ");
	}
	for(int n = i, i = 0; i < n; ++i )
		puts(Array[i]);
	return 0;
}
