Skip to content

Instantly share code, notes, and snippets.

@gfx
Last active August 29, 2015 13:56
Show Gist options
  • Save gfx/9263303 to your computer and use it in GitHub Desktop.
Save gfx/9263303 to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
#define b(x) #x
#define a(x) b(x)
int main() {
NSLog(@"%s", a(nil)); // -> ((void*)0)
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment