1
vote
Amazing programming achievements
Some early (c1979) portable chess machines had 4-bit cpus with 320 bytes of RAM and 2k bytes of ROM.
…
5
votes
C memory management error?
You are attempting to free the middle of your array.
Fragment *fragment = &frags[i];
...
...
/* to do : free fragment */
free (fragment);
fragment = NULL;
…
