I guess that you want to concatenate the strings. If so, yes. You have to know how much space you want before you allocate it.
In fact, you can use realloc, but it's really just copy the previous string every time, and much less effective.
Some code : (assuming char *s[] and int n)
int i,l=1;
for (i=0;i<n;i++) l+=strlen(s[i]);
char *r=malloc(l);
r[0]=0;
for (i=0;i<n;i++) strcat(r,s[i]);
Edit: As some comments, strcat is ineffective when you know the length. (I still prefer it since it allocate the memory in one time.) Some more effective code is:
int i,l=1;
for (i=0;i<n;i++) l+=strlen(s[i]);
char *r=malloc(l);
char *d=r;
for (i=0;i<n;i++) {
srtcpy(d,s[i]);
d+=strlen(s[i]);
}