document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2.  
  3. #define BUILD_BUG_ON_ZERO(e)    (sizeof(struct { int:-!!(e); }))
  4.  
  5. int main(void)
  6. {
  7.         int a = 2;
  8.  
  9.         BUILD_BUG_ON_ZERO(a == 2);
  10.         BUILD_BUG_ON_ZERO(2 == 2);
  11.  
  12.         return 0;
  13. }
');