Skip to content

Instantly share code, notes, and snippets.

@HennIdan
Created July 12, 2016 15:08
Show Gist options
  • Save HennIdan/fe9970cfcb47c6bc5e97399d73646bbc to your computer and use it in GitHub Desktop.
Save HennIdan/fe9970cfcb47c6bc5e97399d73646bbc to your computer and use it in GitHub Desktop.
for (int i = 0; i < 100000; ++i)
{
// Primary loop
for (int c = 0; c < arraySize; ++c)
{
if (data[c] >= 128)
sum += data[c];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment