document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <limits.h>
  2. int main(void)
  3. {
  4.     volatile int x=INT_MIN;
  5.     volatile int y=-1;
  6.     x=x/y;
  7.     return 0;
  8. }
');