Hacker News new | ask | show | jobs
by Someone 586 days ago
The C code is different, doing a bit more than the JavaScript, Python and Go versions:

  int main() {
    long array[10000];
    for (int i = 0; i < 10000; i++) {
      for (int j = 0; j < 100000; j++) {
        array[i] = array[i] + j + i; // on that page
        array[i] = array[i] + j; // what it should be
      }
    }
  }
I suspect/guess they added that to avoid the case where the C compiler is too smart, and forgot to make the other programs do the same thing.

Also: what do they do to prevent the C compiler from removing that entire bit of code? If they don’t read the resulting data, it may well do that.