用c语言通过指针传递实现将一数组中的数据按相反顺序存放
时间: 2023-04-07 21:01:42 浏览: 817
C语言用指针将字符串数组位置颠倒
可以使用以下代码实现:
void reverse(int *arr, int size) {
int *start = arr;
int *end = arr + size - 1;
while (start < end) {
int temp = *start;
*start = *end;
*end = temp;
start++;
end--;
}
}
其中,arr是指向数组的指针,size是数组的大小。通过指针操作,将数组中的数据按相反顺序存放。
阅读全文