#include <stdio.h>
#include <stdlib.h>

char tab[10];

main(){
char * p;
p = tab;
p = (char *) realloc(p, 20);
p[3] = 'a';
printf("%c\n",p[3]);
}
 

