show/hide this revision's text 2 added 115 characters in body

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
show/hide this revision's text 1

C concatenates string literals automatically. E.g. "foo" "bar" is equivalent to "foobar".

So, without token pasting:

#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