In C, there are no reference parameters, and everything [note 1] is passed by value. But you can use pointers to explicitly simulate pass by reference. It looks like this: void swap(int *a, int *b){ int temp; temp = *a; *a = *b; *b = temp; } This is also close to ...
the storage controller108places the entries corresponding to the available data extents into the mapping table for the first storage tier202in place of the entries that previously corresponding to the write data that has now been migrated. As a result, the pointers in the tables corresponding to ...