show/hide this revision's text 3 deleted 138 characters in body

My question is, how does C allocate memory when I haven't actually malloc()ed the appropriate amount of memory? What's the default?

To not allocate memory. You have to explicity create it on the stack or dynamically.

In your example, subcells points to an undefined location, which is a bug. Your function should return a pointer to a Cell struct at some point.

In your code, newCell goes out of scope. You can't return it, because it won't stick around, and will cause undefined behaviour.

show/hide this revision's text 2 deleted 300 characters in body

My question is, how does C allocate memory when I haven't actually malloc()ed the appropriate amount of memory? What's the default?

To not allocate memory. You have to explicity create it on the stack or dynamically.

In your example, subcells points to an undefined location, which is a bug. Your function should return a pointer to a Cell struct :

struct Cell *cell = malloc(sizeof(struct Cell)); /* at some point.

In C++ you would castyour code, but don't do this in plain C. */ /* Error checking newCell goes here. */ if (cell == NULL) { /* The allocation failed, respond appropriatelyout of scope. */ } You can't return cell;

remembering to free cell somewhereit, because it won't stick around, and will cause undefined behaviour.

show/hide this revision's text 1

My question is, how does C allocate memory when I haven't actually malloc()ed the appropriate amount of memory? What's the default?

To not allocate memory. You have to explicity create it on the stack or dynamically.

In your example, subcells points to an undefined location, which is a bug. Your function should return a pointer to a Cell struct:

struct Cell *cell = malloc(sizeof(struct Cell)); /* In C++ you would cast, but don't do this in plain C. */
/* Error checking goes here. */
if (cell == NULL) {
    /* The allocation failed, respond appropriately. */
}
return cell;

remembering to free cell somewhere.