...
| Code Block | ||
|---|---|---|
| ||
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); |
...
...
| Code Block | ||
|---|---|---|
| ||
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); |
...