Daniel Pfeifer's avatar
Daniel Pfeifer
_@purplekarrot.net
npub1purp...ajf8
executive high priest of blowing your mind
Daniel Pfeifer's avatar
purpleKarrot 1 year ago
#cpp question: Where do you put the `const` keyword: To the left or to the far right?
Daniel Pfeifer's avatar
purpleKarrot 2 years ago
Can I write hightlighted code here? ```c for (j = 0; j < array_len; j += 8) { total += array[j + 0]; total += array[j + 1]; total += array[j + 2]; /* Main body of total += array[j + 3]; * loop is unrolled total += array[j + 4]; * for greater speed. total += array[j + 5]; */ total += array[j + 6]; total += array[j + 7]; } ```