Hacker News new | ask | show | jobs
by anitil 697 days ago
I'm trying to understand - would you convert

  #define RET 42
  int main(void){return RET;}
to

  int
  main
  (
  void
  )
  {
  return
  42
  ;
  }
and then randomly remove lines, recompile (if it is compile-able) and check the behaviour?