Skip to content

Instantly share code, notes, and snippets.

@joshlf
Created August 15, 2014 11:43
Show Gist options
  • Save joshlf/c01fcb58d5494a1fe9fd to your computer and use it in GitHub Desktop.
Save joshlf/c01fcb58d5494a1fe9fd to your computer and use it in GitHub Desktop.
Infinite loops.
int main() {
long *i;
long arr[64];
for (i = arr; i < arr + (64 * sizeof(arr)); i++) {
*i = (long)arr;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment