zu einer Anordnung auf Strings in c zuordnen
char **strs;
int num_of_strs = 10;
strs = malloc (sizeof(char *) * num_of_strs );
Chinra Tensei
char **strs;
int num_of_strs = 10;
strs = malloc (sizeof(char *) * num_of_strs );