Skip to content

Instantly share code, notes, and snippets.

@robstewart57
Last active August 29, 2015 14:14
Show Gist options
  • Save robstewart57/f1562264ebce6fbaf590 to your computer and use it in GitHub Desktop.
Save robstewart57/f1562264ebce6fbaf590 to your computer and use it in GitHub Desktop.
int a[10];
for (int i; i<100000; i++) {
a[i] = i * 4;
}
int b[10];
for (int i; i<100000; i++) {
b[i] = a[i] + 3;
}
/* I want to eliminate array a , something like... */
int b[10];
for (int i; i<100000; i++) {
b[i] = i * 4 + 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment