Skip to content

Instantly share code, notes, and snippets.

@montyanderson
Created June 17, 2015 15:14
Show Gist options
  • Save montyanderson/c05061200e44c8b936c7 to your computer and use it in GitHub Desktop.
Save montyanderson/c05061200e44c8b936c7 to your computer and use it in GitHub Desktop.
Rest in peace, RAM.
#include <stdio.h>
#include <stdlib.h>
int main() {
while(1 > 0) {
int *number = malloc(sizeof(int));
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment