format_c@manchester:~> cat test.c && g++ test.c -otest && ./test && rm test #include #include int main () { int array[2] = {1,2}; printf("Aktuelle Groesse: %d\n",sizeof(array)); realloc(*&array,sizeof(int)); printf("Aktuelle Groesse: %d\n",sizeof(array)); return 0; } Aktuelle Groesse: 8 Segmentation fault format_c@manchester:~>