#include int main() { const int *p=NULL; int * const c=NULL; int (*t)[20]; p=malloc(sizeof(int)); *p=2007; /* HIBÁS */ free(p); c=malloc(sizeof(int)); /* HIBÁS */ *c=2007; free(c); return 0; }