C supports concatenating constant strings at compile-time. Can I do the same for any constant array? (E.g. concatenate two char ** arrays.)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Basically no, but you can always workaround this with the preprocessor. The trick is to define arrays without curly braces:
Now, you can join arrays in compile time with comma. To use them, however, you will either have to sorround them with curly braces or use a macro:
You can now use a single array or any concatenation you need like so:
Using macros to achieve such results is bad practice, though. |
|||||||
|
|
Short answer: No. Longer short answer: String literals are indeed character arrays, but not all character arrays are string literals. The compile-time concatenation works only for string literals. No arrays have that "feature". |
|||
|
|