Skip to content

Instantly share code, notes, and snippets.

@tommorris
Created April 22, 2014 07:51
Show Gist options
  • Save tommorris/11169138 to your computer and use it in GitHub Desktop.
Save tommorris/11169138 to your computer and use it in GitHub Desktop.
Infinite scrolling implemented in C
#include <stdio.h>
#include <stdlib.h>
int main() {
while (1) {
void *ptr;
ptr = malloc(10);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment