In Cconcatenates , string literals are concatenated automatically. E.g. For example,
const char * s1 = "foo" "bar" is equivalent to bar";
const char * s2 = "foobar"foobar";
s1 and s2 are the same string.
So, for your problem, the answer (without token pasting:) is
#ifdef __TESTING
#define IV_DOMAIN "domain.org"
#elif __LIVE_TESTING
#define IV_DOMAIN "test.domain.com"
#else
#define IV_DOMAIN "domain.com"
#endif
#define IV_SECURE "secure." IV_DOMAIN
#define IV_MOBILE "m." IV_DOMAIN
