#define N 80
void fun(int a[N],int p,int n)
{int i,j,b[N];
for(i=p+1,j=0;i
for(i=0,j=n-p-1;ib[j]=a[i];
printf("\nThe data after moving:\n");
for(i=0; i
main()
{ int a[N]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15},b[N];
int i,j,p,n=15;
printf("The original data:\n");
for(i=0; i
printf("\n\nEnter p: ");
scanf("%d",&p);
fun(a,p,15);}
这是我编写的不知道是不是你的说那个意思。