Search Results

5
votes

Why am I getting a malloc: double free error with realloc()?

First off, sorry I'm late to the party. This is my first stackoverflow answer. :) As has been pointed out, when realloc() is called, you can potentially change the pointer to the memory b …
32
votes

What are the barriers to understanding pointers and what can be done to overcome them?

In my first Comp Sci class, we did the following exercise. Granted, this was a lecture hall with roughly 200 students in it... Professor writes on the board: "int john;" John st …
4
votes

Byte level length description

You should really use a fixed-width field for your length. When the program on the receiving end has to read the length field of your packet, how does it know where the length stops? …