In C:
char array ending with '\\0'char s[n][101];
char result[n][11];
s[n][101]
→ n strings
→ each string max length = 100 characters + '\\0'
Why 101?
Because:
'\\0's[0] → first word
s[1] → second word
...
Each row behaves like:
char s[i][];
You can use: