C语言 指针实现一维数组元素逆序输出
Posted Aiden (winner)
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言 指针实现一维数组元素逆序输出相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
void reverse(int* a,int n){
int i,t;
for ( i = 0;i< n/2; i++){
t=*(a+i);
*(a+i)=*(a+9-i);
*(a+9-i)=t;
}
}
void main(){
int *p;
int a[10]={0,1,2,3,4,5,6,7,8,9};
reverse(a,10);
for(p=a;p<a+10;p++){
printf("%2d",*p);
}
}
以上是关于C语言 指针实现一维数组元素逆序输出的主要内容,如果未能解决你的问题,请参考以下文章