int a[3]; free(a[1]);
Is this allowed? Can i still use the first and last element in a normal way? Furthermore I tried this:
int a[3]; free(a[1]) a[1]='a';
That worked, can someone explain why that still works?
548k questions
547k answers
4 comments
86.3k users