1#include <stdlib.h> 2int main(void) 3{ 4 char *p; 5 p = malloc(10); 6 free(p); 7 free(p); 8 return 0; 9} 10 11