in reply to Processing arrays with elements of different size

That depends on what you are doing while processing the array. If what you are doing is slow for long strings, than yes, it will affect processing. If what you are doing is independent of the length of the string, then it won't be affected.

Internally, the strings themselves aren't stored in the arrays. Just pointers to structs that have pointers to structs that have a pointer to a character array (on the C level).

  • Comment on Re: Processing arrays with elements of different size