crash.c 178 B

123456789101112
  1. // this doesn't seem to actually crash c...
  2. /* int main (void) */
  3. /* { */
  4. /* return (int ) 0; */
  5. /* } */
  6. // this will actually crash a c program
  7. int main ()
  8. {
  9. return 1/0;
  10. }