Skip to content

Instantly share code, notes, and snippets.

@DonMag
Last active December 18, 2015 17:05
Show Gist options
  • Save DonMag/745f189f999860d25a3e to your computer and use it in GitHub Desktop.
Save DonMag/745f189f999860d25a3e to your computer and use it in GitHub Desktop.
#define strA "Hello"
#define strB "World"
#define strC strA " " strB
// strC is now defined as "Hello World" (without the quotes)
// then, later in code...
NSLog(@"Value of strC = [%s]", strC);
//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment