For some reason I\'m getting an error: statement with no effect on this statement.
statement with no effect
for (j = idx; j < iter; j + increment) { printf(\"from lo
You probably meant to write j += increment instead of j + increment.
j += increment
j + increment