Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: changed nums + SIZE to &(nums[SIZE])

...

Code Block
bgColor#ccccff
int nums[SIZE];
char *strings[SIZE];
int *next_num_ptr = nums;
int free_bytes;

/* increment next_num_ptr as array fills */

free_bytes = (&(nums + [SIZE]) - next_num_ptr) * sizeof(int);

...