Global Feed Post Login
5a
Sebi Creator
5aa46e680d50aea9f5cb254c1e82bc8b8bdf9a5e02e6957465e4b06625f3c23d
Replying to Avatar Daniel Pfeifer

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];

}

```

5a
Sebi Creator 2y ago

False

Load More