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

int main(void) 
{
    typedef char cstring[100]; //cstring is a new type which is 
                               //a char array of size 100

    cstring *arrstring = malloc (10* sizeof (cstring)); //19 strings, for demo!

    int i;
    for( i = 0 ; i < 10; ++i)
        strcpy(arrstring[i], "some string of size less than or equal to 100");

    for( i = 0 ; i < 10; ++i)
         printf("%s\n", arrstring[i]);
    return 0;
}