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;
|
2 | Added examples | ||
|
Strings that are next together are combined by the C compiler.
|
||||
|
1 |
|
||
|
Strings that are next together are combined by the compiler
|
||||