1 2 3 4 5 6 7 8 9 10 11 12 13 14
#define C L'\400' #if C #define zero (!C) #else #define zero C #endif main() { if (zero != 0) abort (); exit (0); }