blob: 60626bff778a166e15feed402334a7526fb4bdfa [file] [log] [blame]
#include <stdlib.h>
int main() {
char *x = (char*)malloc(10 * sizeof(char));
free(x);
return x[5];
}