求助调试下这个程序
#include "stdio.h"#define N 5
void main()
{
void inv(int *x,int n);
int a[N],i;
int *p=a;
for(i=0;i<N;i++)
scanf("%d",p++);
inv(a,N);
for(i=0;i<N;i++)
printf("%3d",*p++);
}
void inv(int *x,int n)
{
int *p,t,*i,*j,m=(n+1)/2;
i=x;j=x+n-1;p=x+m;
for(;i<p;i++,j--)
{
t=*i;*i=*j;*j=t;
}
return;
}