show/hide this revision's text 2 Added examples

Strings that are next together are combined by the C compiler.

#define DOMAIN "example.com"
#define SUBDOMAIN "test." DOMAIN
const char *asCString = SUBDOMAIN;
NSString *asNSString = @SUBDOMAIN;
show/hide this revision's text 1

Strings that are next together are combined by the compiler

#define DOMAIN "example.com"
#define SUBDOMAIN "test." DOMAIN