Skip to content

Instantly share code, notes, and snippets.

@cfcosta
Created November 21, 2011 16:03
Show Gist options
  • Save cfcosta/1383059 to your computer and use it in GitHub Desktop.
Save cfcosta/1383059 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int *x;
int i = 0;
int *aux;
for (i = 0; i < 65355; i++) {
aux = *x++;
aux = malloc(sizeof(int));
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment