if there may be other things than string literals involved (ie., you are creating new identifiers from the macros) use the '##" preprocessor token pasting operator. You'd probably also need to use the '#' 'stringizing operator to make your macros into literal strings.
And as far as the token pasing pasting operator goes, I don't think that most of the answers that suggested using the token pasting preprocessor operator have actually tried it - it can be tricky to use.
Using the answer that is often suggested will result in a compiler error when you try to use the IV_SECURE macro, because:
#define IV_SECURE "secure."##IV_DOMAINexpands to:
"secure"domain.orgYou might want to try to use the '#`' 'stringizing' operator:
#define IV_SECURE "secure." #IV_DOMAINBut that won't work because it only works on macro arguments - not just any old macro.
So using your original IV_DOMAIN defines and the utilty macros from above, you could do this to get what you want:
// Sub-Domain#define IV_SECURE "secure." STRINGIFY( IV_DOMAIN) //secure.domain.org etc#define IV_MOBILE "m." STRINGIFY( IV_DOMAIN)
