#include #include int main(void) { char *c = malloc(10); c[10] = 1; free(c); return 0; }